Hello,
I want to split a string starting from ${ and ending with }
where anythign can be inbetween ( ${*} )
I have tried
However I am getting no luck with it,
help would be greatly appreciated
I want to split a string starting from ${ and ending with }
where anythign can be inbetween ( ${*} )
I have tried
Code:
String url2 = "http://someurl${language}somemore.com";
String[] url3 = url2.split("\\$\\{\\w\\}");
help would be greatly appreciated
Comment