I have followed problem: I have one column, which contains a lot of strings. Something like this:
"Shop/Kaufprozess/Zahlungsart u. Zustellung"
The first two words are always different. This could be for example
"HTML-Title/Kaufprozess/Zahlungsart u. Zustellung"
or
"Info/Template/Zahlungsart u. Zustellung“
"tpl_landingpage/Kaufprozess/Zahlungsart u. Zustellung“ etc.
From this string, I want to have only first two wards! Example: Original text:
„Shop/Kaufprozess/Zahlungsart u. Zustellung“
I want to keep: Shop/Kaufprozess
How can I do this?
Thank you!