I'm trying to do a Regex search to find either Ř [Latin Capital R with Caron] or Ě [Latin Capital E with Caron].
I was able to make it work using this: [\x{0158}\x{011A}]
However, this does not work: [ŘĚ]
It appears that Regex is transliterating Ř to R and Ě to E, for purposes of the search.
Is is not possible to use these letters with diacritical marks to find them in text?