search for a string

Get help with the installation and running of the Zeus IDE. Please do not post bug reports or feature requests here. When in doubt post your question here.
Post Reply
alan_m
Posts: 31
Joined: Fri Jun 02, 2006 12:44 pm

search for a string

Post by alan_m »

Hi,
How do I use the search facility to search for the following string

STATS$

regards

Alan
jussij
Site Admin
Posts: 2650
Joined: Fri Aug 13, 2004 5:10 pm

Post by jussij »

The search will be failing because the $ character represents the end of line.

For example the STAT$ search string will only find the second of these two strings:

Code: Select all

STATION
STAT
To stop the $ from taking on special meaning just delimit it as follows:

Code: Select all

STATS\$
Cheers Jussi
alan_m
Posts: 31
Joined: Fri Jun 02, 2006 12:44 pm

Post by alan_m »

Excellent fix, thanks

Alan
Post Reply