I want to match M.S.
as word in text with:
re.search(r"\b(M.S.)\b", "M.S. in computer science.")
re.search(r"\b(M\.S\.)\b", "M.S. in computer science.")
But none of the above return any results.
I want to match M.S.
as word in text with:
re.search(r"\b(M.S.)\b", "M.S. in computer science.")
re.search(r"\b(M\.S\.)\b", "M.S. in computer science.")
But none of the above return any results.