In my Java app I have a "template string", say, "This record's name is : %%%NAME%%%."
I want to loop through a list and for each iteration, print out a "customized version" of this template that string-replaces the %%%NAME%%% token for a meaningful value. For instance:
List<String> strNamesList = getNamesSomehow();
String strTemplate = "This record's name is : %%%NAME%%%.";
String strCustomized = "";
for(int i = 0; i < strNamesList.size(); i++)
{
strCustomized = strTemplate.replaceFirst(strSomeRegex, strNamesList.get(i));
System.out.println(strCustomized);
}
Per usual, I am choking on the strSomeRegex. I simply need a regex that will match for the exact phrase:
%%%NAME%%%
I have Googled, Binged, Wikipediaed and more. Searches for "match regex on exact" (and their likes) turn back all sorts of things, none of which help me with this token that has punctuation (percentage signs) in it.
Regexes are just one of those things that get me every time, and this is my last resort.
Thanks to any kind StackOverflowers who can point me in the right direction!