Hello,
I've got a dataset in which I want to remain everything after a particular word, like "debtor". Like:
ID | Variable_1
1 xxx debtor profile 7
2 x debtor profile 3 to 1
3 xx debtor profiles 133 to 155
4 xxxx debtor profile 3
So the final result would be:
ID | Variable_1
1 profile 7
2 profile 3 to 1
3 profiles 133 to 155
4 profile 3
In other words, I need a statement with which I could delete everything to the left of a particular word. Anyone any idea? Thanks in advance!
I've got a dataset in which I want to remain everything after a particular word, like "debtor". Like:
ID | Variable_1
1 xxx debtor profile 7
2 x debtor profile 3 to 1
3 xx debtor profiles 133 to 155
4 xxxx debtor profile 3
So the final result would be:
ID | Variable_1
1 profile 7
2 profile 3 to 1
3 profiles 133 to 155
4 profile 3
In other words, I need a statement with which I could delete everything to the left of a particular word. Anyone any idea? Thanks in advance!