I have two questions
1. How do I use a Replace() function in JSP
e.g.
String strName = "My name is";
String strName2 = replace(strName, "is", "is Michael");
2. How do I make a string to start with a capital letter
e.g.
I want david to be David
Thank you.