Lets say I have a string "Hello." I want to see if this string contains a period:
text <- "Hello."
results <- grepl(".", text)
This returns results as TRUE, but it would return that as well if text is "Hello"
without the period.
I'm confused, I can't find anything about this in the documentation and it only does this for the period.
Any ideas?