I want to search a particular char from string without any loop and then i want to insert new char after that.
String a = "my%name%is%";
I want to find "%" and then i want to insert "?" char.
Output result:
a = "my%?name%?is%?";
I want to search a particular char from string without any loop and then i want to insert new char after that.
String a = "my%name%is%";
I want to find "%" and then i want to insert "?" char.
Output result:
a = "my%?name%?is%?";