0
Something went wrong with java code......
2 Answers
+ 1
dot (or period) is a meta charecter in regex. It matches any single charecter.
If you want to match exactly a dot (and not *any charecter*) you'll need to escape dot with backward slash.
use "\\." instead of "."
+ 1
š®š³Omkarš thanks
it's working...š