H
Hagop
My Microsoft Word 2003 document contains the following:
# aa $
# bb $
# AA!AA $
# BB.BB $
# aaaaaaaaaaaaaa $
# bbbbbbbbbbbbbb $
My search regular expression is "# ?{1,10} $"
Word is finding all these lines as matching my search expression. It should
not find the last two lines, as the number of characters between the # and $
are more than 10.
If I change the regular expression to "# [A-z]{1,10} $" then it finds the
first two lines but not the 3rd and 4th.
This seems like a software bug to me. Can anybody else confirm this?
# aa $
# bb $
# AA!AA $
# BB.BB $
# aaaaaaaaaaaaaa $
# bbbbbbbbbbbbbb $
My search regular expression is "# ?{1,10} $"
Word is finding all these lines as matching my search expression. It should
not find the last two lines, as the number of characters between the # and $
are more than 10.
If I change the regular expression to "# [A-z]{1,10} $" then it finds the
first two lines but not the 3rd and 4th.
This seems like a software bug to me. Can anybody else confirm this?