Alright, I am really new into this and might be a stupid question but I have a word "kirtna" that appears in more than 1000 HTML files that are saved in my assets folder. It's in proper HTML file format which was pasted into Mac's TextEdit and saved to HTML. Now I want the alphabet 'a' to be appeared before 'n'. So instead of "kirtna" it should be "kirtan". I know I can do that Java itself using Regex such as below:
String word = "instant";
String replaced = input.replaceAll("(\\w)a", "a$1");
But can I really do this in HTML?