Dec. 22, 2010
6:50 a.m.
I'd like to find all the occurrances of the string 'tabs' in a package I've written.
If you really just want the string 'tabs', the string 'tabs' with the quotes is the search expression. If you want to find it as part of a substring use something along: `#string `{ :node | node value isString and: [ node value includesSubString: 'tabs' ] } The `#string is a literal pattern (booleans, characters, arrays, strings, numbers, ...) and `{ ... adds a constraint on the preceding match. Lukas
Is there something I can read to learn how to do that?
Thanks
Paul
-- Lukas Renggli www.lukas-renggli.ch