I need separate two columns with tidyr.
The column have text like: I am Sam
. I mean the text always have only two white spaces, and the text can have all other symbols: [a-z][0-9][!\ºª, etc...]
.
The problem is I need split it in two columns: Column one I am
, and column two: Sam
.
I can't find a regular expression two separate with the second blank space.
Could you help me please?