Finding strings in script editor

2010-01-02 Thread David Bovill
Anyone got any tips and advice on how to use the IDE's find dialogue to find exact strings? I'm looking for the string: Global | View | Script | Menu It seems the find matches each and every word anywhere in the script - quoting the string does not work and I don't seem to be able to get

Re: Finding strings in script editor

2010-01-02 Thread Bernard Devlin
Hi David, With use regular expressions selected in the Find Options sub-section of the Find dialog, I could find this string: Global | View | Script | Menu using this: Global \| View \| Script \| Menu I wasn't sure if you wanted to find the as well. If so, you can use regex for that too.

Re: Finding strings in script editor

2010-01-02 Thread David Bovill
Thanks Bernard! 2010/1/2 Bernard Devlin bdrun...@gmail.com Hi David, With use regular expressions selected in the Find Options sub-section of the Find dialog, I could find this string: Global | View | Script | Menu using this: Global \| View \| Script \| Menu I wasn't sure if you