| 1 | $s = Chr(160)
|
|---|
| 2 | ConsoleWrite('$s =' & $s & '=' & @CRLF)
|
|---|
| 3 | ConsoleWrite('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
|
|---|