Hi All,
I'm trying to extract everything in a string up to the first period. For example:
"My string to extract."
I want to Parse "My string to extract" and output to a new column. In the RegEx Tool, I entered "^(.+?)..*" as my Regular Expression. I am only getting "M". From what I understand, ^ means start from the beginning, (.+?). means get everything up to the first period, and .* ends the statement. Can someone show me how to fix this?
Thanks!