Closed jaeung24k-sindoh closed 3 years ago
re_compile("[A-Z]:-?\d+.\d+"); or re_compile("[A-Z]:-?\d+[.]\d+");
Can't distinguish between X:12.34 and X:1234.
[.] will match any character,try [\.] You should learn about escape characters
re_compile("[A-Z]:-?\d+.\d+"); or re_compile("[A-Z]:-?\d+[.]\d+");
Can't distinguish between X:12.34 and X:1234.