I want to check if the Regex defined in Java is valid by Python.
But the Regex in the two languages are little different.
For example, to parse the character dot (.)
"\." # Python version
"\\." # Java version
Is there any way to check Java regex in Python?
[.]