Hi,
I am trying to extract text from a string and not sure what is the best way here.
The input is :
| manhatan road left turn |
| manhatan road right |
| manhatan road |
and the output should be.
| manhatan road | left turn |
| manhatan road | right |
| manhatan road | |
Basically I need to separate identical text in a column and the extra in a second one.
Thanks for your inputs!