Quote:
Originally Posted by trekky0623
Stripping out soft hyphens would mess up the locations of the terms it finds.
But does C# support regex search? Why not search for aliases like this:
alias: Nessarose
search:N\x{00AD}*e\x{00AD}*s\x{00AD}*s\x{00AD}*a\x {00AD}*r\x{00AD}*o\x{00AD}*s\x{00AD}*e
|
Brilliant. I use regex in a few places already in a very similar fashion to this, not sure why I didn't think of trying it that way.
Thanks for your suggestion!