I am trying to match a sentence that contains both English and Non English characters but does not contain pure numeric including decimals.
Example - Should match::
Renforcé-Bettwäschegar BLUMIRA123
Not match::
999.99
The following code matches everything that's not contained in the ASCII characters -
[^\u0000-\u0080]+
This is all I have at the moment. Any help will be much appreciated.
Thank you.