I was just simply wondering how I could limit the length of a string in C#.
string foo = "1234567890";
Say we have that. How can I limit foo to say, 5 characters?
|
Strings in C# are immutable and in some sense it means that they are fixed-size. If you just want to make sure isn't too long (e.g. when passing it as a parameter to some legacy code), truncate it manually:
|
|||||||||
|
|
You can't. Bear in mind that You could create your own type, say
... but you can't stop a string variable from being set to any string reference (or null). Of course, if you've got a string property, you could do that:
Does that help you in whatever your bigger context is? |
|||||||||||
|
|
You could extend the "string" class to let you return a limited string.
Result:
|
|||||||||||||
|
|
If this is in a class property you could do it in the setter:
|
|||
|
|
|
The only reason I can see the purpose in this is for DB storage. If so, why not let the DB handle it and then push the exception upstream to be dealt with at the presentation layer? |
|||
|
|
Note that you can't just use foo.Substring(0, 5) by itself because it will throw an error when foo is less than 5 characters. |
|||
|
|
if (foo.Length > 5) { throw new Lemmons.StringTooLongException(); }– Michael Petrotta Sep 29 '10 at 21:27