ultraman Posted July 14, 2004 Posted July 14, 2004 Is there a simple way of filling a string with a special caracter ("X" for example) in C# ? I'm looking for something as easy as StrDup in VB. Thanks ! Quote Now go on, boy, and pay attention. Because if you do, someday, you may achieve something that we Simpsons have dreamed about for generations: You may outsmart someone! --Homer Simpson
Arch4ngel Posted July 14, 2004 Posted July 14, 2004 (edited) Here is a solution This will do the trick. string str = ""; str.PadRight( <TOTAL WIDTH>, [YOUR CHAR]); str.PadLeft( <TOTAL WIDTH>, [YOUR CHAR]); it will add them from left or from right. 1st parameter is the total number of character... so if you have less than the number... all the other will be filled with your character. The default implementation (with 1 parameter) will pad with space. To add a certain number of character... consider this function : public string AddToRight(string src, char c, int num) { string tmp = ""; tmp = tmp.PadRight( num, c); return src + tmp; } Edited July 14, 2004 by Arch4ngel Quote "If someone say : "Die mortal !"... don't stay to see if he isn't." - Unknown "Learning to program is like going out with a new girl friend. There's always something that wasn't mentioned in the documentation..." - Me "A drunk girl is like an animal... it scream at everything like a cat and roll in the grass like a dog." - Me after seeing my girlfriend drunk and some of her drunk friend. C# TO VB TRANSLATOR
ultraman Posted July 14, 2004 Author Posted July 14, 2004 Cool, that does the trick, just as you said. I still have a lot to learn in C#, syntax is not quite like VB.NET ;-) Quote Now go on, boy, and pay attention. Because if you do, someday, you may achieve something that we Simpsons have dreamed about for generations: You may outsmart someone! --Homer Simpson
Folle_Invasato Posted July 15, 2004 Posted July 15, 2004 Is there a simple way of filling a string with a special caracter ("X" for example) in C# ? I'm looking for something as easy as StrDup in VB. string str = new string( 'X', 5); // result = "XXXXX" Bye! Quote
Arch4ngel Posted July 15, 2004 Posted July 15, 2004 Well ... this could replace the padding in my function :p lol Quote "If someone say : "Die mortal !"... don't stay to see if he isn't." - Unknown "Learning to program is like going out with a new girl friend. There's always something that wasn't mentioned in the documentation..." - Me "A drunk girl is like an animal... it scream at everything like a cat and roll in the grass like a dog." - Me after seeing my girlfriend drunk and some of her drunk friend. C# TO VB TRANSLATOR
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.