regex - Search multiple strings in Xcode -
is there way can search string1 || string2
in xcode project , or in single file?
when doing such want xcode highlight wherever finds string1
or string2
.
yes, can use regular expression, e.g. string|string2
.
for multiple file search across whole project:
for single file search use normal find , change find options textual regular expression:
Comments
Post a Comment