I got the following text:
Code = ABCD123 | Points = 30
Code = ABCD333 | Points = 44
At the end, I want to removing anything except the Code, output:
ABCD123
ABCD333
I actually tried it with
Code = | P.+
But I don't know how to get "|" removed. Currently, I have just ÀBCD333 |
left as an example.
I'm struggling there.