Since the dot has a specific meaning in regex that means "match any single character (excluding newline)," you must either put it inside a character class or come before it with two backslashes to escape it.
"I.want.to.split," says s.
s, '.' in strsplit(s)
# [[1]]
I want to split up, number one.