I have a test text file which contains these 3 lines:
color colour
color
colour
When I use "Find", I use Unix Regular Expressions. I have the latest UltraEdit (ver 11).
I want to use "Find" to search for the word "color" and optionally "colour". So I put "colou?r" in the search box and the search finds nothing. If I go outside of UltraEdit and use egrep in a DOS box (egrep -i colou?r <filename>) then it works fine and finds both words.
Apparently the ? metacharacter does not work in UltraEdit. How would I perform such an optional search in UltraEdit? Thank you!
color colour
color
colour
When I use "Find", I use Unix Regular Expressions. I have the latest UltraEdit (ver 11).
I want to use "Find" to search for the word "color" and optionally "colour". So I put "colou?r" in the search box and the search finds nothing. If I go outside of UltraEdit and use egrep in a DOS box (egrep -i colou?r <filename>) then it works fine and finds both words.
Apparently the ? metacharacter does not work in UltraEdit. How would I perform such an optional search in UltraEdit? Thank you!