How do I determine if the string has any alpha character or not?
In other words, if the string has only spaces in it how do I treat it as an Empty string?
|
|
|||||||||||
|
|
|
In Java:
|
||
|
|
|
|
The canonical method, regardless of language, is to trim the string (trim functions remove whitespace at the beginning and end of a string) and compare the result to the empty string:
Not all languages have a native trim function, however. Here's a good, general-purpose one for JavaScript, since I haven't seen a JS example yet:
(Check out Steven Levithan's post about JavaScript trim functions for an in-depth comparison.) Alternatively, you can use a regular expression to test "emptiness":
Again, not all languages natively support regular expressions. Check your language documentation. |
||
|
|
|
|
This will do the job if you are using .net.
If you are using .net 3.0 or above then you might like to create an extension method for this that you can use with any string.
You can then use this like so
Hope that this is what you are after. |
|||
|
|
|
should work, as long as you're using Perl. Anybody got a LOLCODE version? |
||
|
|
|
In C# you should use String.IsNullOrEmpty. To treat it as an empty string you can just use "" or string.Empty; To check if its empty there is a .Trim function. |
||
|
|
|
|
C++
C
Java
You get the idea, you can do something similar in any language. |
||||||||||
|
|
|
If you really want to treat a string that only contains spaces as an empty string (which it isn't but that's a different story) just use whatever stripping method your language of choice provides (string.lstrip() and string.rstrip() in Python for example) and check if the resulting string has the length 0. |
||
|
|
|
|
if you talking about .Net(C# or vb), then you can Trim() it to remove white spaces. |
||||
|
|
|
If you are using .NET, then the string type has a |
||
|
|
|
|
Try:
If your language supports it, using "trim", "strip" or "chomp" to remove leading/trailing whitespace could be good too... edit: Of course, regular expressions could solve this problem too: edit: In Caml:
edit: As requested, in LOLPYTHON:
|
|||
|
|
|
C#: Empty means (MSDN) The value of this field is the zero-length string, "". Therefor if you have spaces it will not be empty
|
||||||
|