I’ve been trying to get a JavaScript regex command to turn something like \"thisString\" into \"This String\" but the closest I’ve gotten is replac
\"thisString\"
\"This String\"
Not regex, but useful to know plain and old techniques like this:
var origString = "thisString"; var newString = origString.charAt(0).toUpperCase() + origString.substring(1);