Hi everyone, I'm just trying to remove spaces from some line:
"(jan | feb | mar | apr | may | jun | jul | aug | sep | oct | nov | dec)\.(\s+),(\s+)(\d{4})"
in my solution and try to do that with find and replace and somewhat don't know how to enter space character in this dialog box. And as I started with some regx what is the difference between:
"(jan|feb|mar|apr|may|jun|jul|aug|sep|oct|nov|dec)\.(\s+),(\s+)(\d{4})"
and
"(jan | feb | mar | apr | may | jun | jul | aug | sep | oct | nov | dec)\.(\s+),(\s+)(\d{4})"
regex wise? Thank you for any help.