Re: silly question
- Posted by Rolf Schröder <r.schr at t-online.de> Jan 22, 2002
- 371 views
Kat, if 'title' is a string (i.e a sequence with numbers 0 < numbers < 256), then you may find a CR by find(13,title) or a LF by find(10,title). an alternative is: match({13},title) or even match({13,10},title) to find CR or CRLF. Have a nice day, Rolf