String p = \\. //(regex sees this as the . metacharacter) String p = . //(regex sees this as a dot and not a metacharacter)
Which of the above will work ok with no problem?
Because im confused if regex wants to see a dot or a metacharacter for it to work.