Ticket #2381: Test_AU3_3316_StringIsSpace.au3

File Test_AU3_3316_StringIsSpace.au3, 293 bytes (added by anonymous, 11 years ago)

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