1. Re: Find ( correction )
- Posted by Bernie <xotron at PCOM.NET> Oct 28, 2000
- 657 views
>
> Double quote gives you {m} a sequence containing the letter m
> Single quote gives you 109 the ASCII number for the letter
>
Thomas:
Correction:
Double quote gives you {109} a sequence containing the ASCII
number for the letter.
Single quote gives you 109 the ASCII number for the letter
Run this code and you will see the difference
? "m"
? 'm'
Bernie

