Given the following string: be_de=Interessant für Dich; be_fr=Intéressant pour toi;
What is the nicest way to extract the substring for a given locale in Kotlin? e.g. I have given the locale be_fr
I want to have Intéressant pour toi
as a result. The string is always in between the locale followed by a =
and a ;
There could be more locales with strings given, and the position of the value to extract always varies.
Of course I could just create a substring after the first index of my locale and then search for the fist index of the semicolon, but I assume there is a more elegant way like using removeSurrounding
, which I can't think of atm.
You can extract a substring from a String using the substring() method of the String class to this method you need to pass the start and end indexes of the required substring.
The easiest way to extract a substring between two delimiters is to use the text to column feature in Excel, especially if you have multiple delimiters. In this example, use =MID(A2, SEARCH(“-“,A2) + 1, SEARCH(“-“,A2,SEARCH(“-“,A2)+1) – SEARCH(“-“,A2) – 1) in cell B2 and drag it to the entire data range.
I don't think removeSurrounding
applies here, as you can only remove text with that if you know exactly the entire prefix
and suffix
to remove.
I'd go with this, as it's very easy to read:
val result = data.substringAfter("be_fr=").substringBefore(';')
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With