Extracting string from string?
I have a string that looks kinda like this:
And i need to get only the "thisthing" part how would i do that?
3 Replies
Split at ,
Get index of the last .
Substring from there till the end
I assume thisthing is not the same throughout the string?
where are you getting that string from?
is it like, a json file? an HTML document? a CSV file?
it seems to have a specific format so it's most likely not "some randomly generated string"
The XY Problem
Asking about your attempted solution rather than your actual problem