Given a bunch of strings in an editor (e.g., Rubymine or IntelliJ) that look like this:
list: ["required","TBD at time of entry", "respirator, gloves, coveralls, etc."]
How can I use the built-in Regex search and replace to convert the initial letter to upper case?
To this:
list: ["Required","TBD at time of entry", "Respirator, gloves, coveralls, etc."]
NOTE WELL: The "TBD" should remain as "TBD" and not "Tbd"