Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Remove trailing numbers from string js regexp

I am trying to remove the trailing numbers from the string using JavaScript RegExp. Here is the example.

Input          output

-------------------------
string33     => string 
string_34    => string_
str_33_ing44 => str_33_ing
string       => string

Hope above example clears what I am looking for!

like image 361
Gowri Avatar asked Dec 29 '14 13:12

Gowri


2 Answers

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+$/, "")
like image 66
Avinash Raj Avatar answered Nov 17 '22 04:11

Avinash Raj


Use .replace():

"string".replace(/\d+$/, '')

A simple demo jsfiddle: http://jsfiddle.net/v8xvrze0/

like image 35
Al.G. Avatar answered Nov 17 '22 04:11

Al.G.