hknight:
How can I test of a string is blank?
For example:
if( !empty(MyString) ) {
Alert("This string is not blank.");
}
if (MyString == "") Alert("This string is blank.");
string NULLstring; // An un-initialized use will result in a error string EmptyString = ""; // a zero length string string BlankString = " "; // a one character string containing a single blank.
if (MyString == "") Alert("This string is blank empty.");
string EmptyString; // Returns true EmptyString == NULL;
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
How can I test of a string is blank?
For example:
if( !empty(MyString) ) {
Alert("This string is not blank.");
}