I am trying to remove the trailing numbers from the string using JavaScript RegExp. Here is the example.
Input output
-------------------------
st
You could use this regex to match all the trailing numbers.
\d+$
Then remove the matched digits with an empty string. \d+
matches one or more digits. $
asserts that we are at the end of a line.
string.replace(/\d+$/, "")
Use .replace()
:
"string".replace(/\d+$/, '')
A simple demo jsfiddle: http://jsfiddle.net/v8xvrze0/