To get started, here is the current tool that I use to test my regular expression: http://www.myregextester.com/index.php
Here is my test line: Test ","," Data
There is a left quote, a right quote and a direct quote.
I am trying to create a regex that ensures that the given string does not contain a left quote. I tried to use ascii code for the left quote, but it does not work:
^[^\x93]+$
I could use ascii codes for specific letters, and the regex works as expected; however, I cannot use ascii code for left quotes. Why not?
source
share