1.5 supports \ & / regardless of 'Options | Search | Replace'
I never realized, but 1.5 supports \ & / regardless of 'Replace forward slashes with backslashes' setting - at least in some areas.
In particular in file paths, where you can use \ or / or \ and / or even \/ .
c:/out/mmm/gui
c:\out\mmm\gui
c:/out\mmm/gui
c:\/out\/mmm\/gui
(Other areas might present gotcha's, but you can even get away with something weird like: regex:c:\\out/\mmm.)
1.5 supports \ & / regardless of 'Options | Search | Replace'
Re: 1.5 supports \ & / regardless of 'Options | Search | Replace'
Simple filename searches will treat \ and / the same.
Both are treated as path separators.
/ will not match \ when using regex or wildcards.
For regex and wildcards you'll need to enable Tools -> Options -> Search -> Replace forward slashes with backslashes
Both are treated as path separators.
/ will not match \ when using regex or wildcards.
For regex and wildcards you'll need to enable Tools -> Options -> Search -> Replace forward slashes with backslashes
Re: 1.5 supports \ & / regardless of 'Options | Search | Replace'
I guess that is not really weird, when you think about it.something weird like: regex:c:\\out/\mmm
Which I always do have enabled.Replace forward slashes with backslashes
So the "weird", /\, is simply escaping the 'm' (which serves no actual purpose) so it's just ignored.