( |
|
|
|||
Returns true if the string is empty or contains only space characters. |
Parameters: | |
String to check. | |
external function boolean BlankString(string); global procedure OnApplicationStartup() begin string 255 tstr; tstr = " "; if(BlankString(tstr)) then begin stopalert("blank"); end; return; end;
Related topics: |