vote up 4 vote down star

Is there a succinct way (i.e. not a for loop) to create a string of a specified length? Doesn't matter what is in the string.

flag

3  
It always matters what's in a string, because you can't change it later. – Henk Holterman Aug 21 at 17:02
I am unit testing string length validation - the contents don't apply in this case. – Jeremy Aug 21 at 17:04

3 Answers

vote up 20 vote down check

You can use the string constructor that takes a char and an int. It creates a string instance with the char repeated the specified number of times.

link|flag
vote up -3 vote down

why would you want to create a string if you dont want to control what the value of the string would be?

I would suggest using a StringBuilder and using the constructor that takes an int

link|flag
For unit testing edge cases – Jeremy Aug 21 at 16:57
vote up 12 vote down

As bdukes mentions there's constructor, that takes a char and an int. That will construct a string of the given length filled with the char.

However, keep in mind, that strings are immutable in .NET, so if you want to create a specific string buffer, you should use StringBuilder instead.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.