Replace everything in a string before a certain point using regex
Replace everything in a string before a certain point using regex
To remove/replace anything in a string to a certain point, use the following regex:
var alphabet = "ABCDEFGHIJKLMNOPQRSTUVEXYZ";
var replaced = alphabet.replace(/^.+M/,'');
This will replace everything before M
and including M
.
Leave a comment