Ticket #2381: Test_AU3_3316_StringIsSpace.au3

File Test_AU3_3316_StringIsSpace.au3, 293 bytes (added by anonymous, on Aug 15, 2013 at 11:17:46 AM)

Example code with comments

Line 
1$s = Chr(160)
2ConsoleWrite('$s =' & $s & '=' & @CRLF)
3ConsoleWrite('StringIsSpace($s) = ' & StringIsSpace($s) & @CRLF)
4#cs example
5 ;~ check marks between ==
6 ;~ method of checking:
7 ;~ set up before the first character =
8 ;~ Press CTRL + RIGHT ARROW
9 Chr(160) = =
10 Chr(32) = =
11#ce