Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

I'd like to extract the numbers from the following string via javascript/jquery:

"ch2sl4"

problem is that the string could also look like this:

"ch10sl4"

or this

"ch2sl10"

I'd like to store the 2 numbers in 2 variables. Is there any way to use match so it extracts the numbers before and after "sl"? Would match even be the correct function to do the extraction?

Thx

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
865 views
Welcome To Ask or Share your Answers For Others

1 Answer

Yes, match is the way to go:

var matches = str.match(/(d+)sl(d+)/);
var number1 = Number(matches[1]);
var number2 = Number(matches[2]);

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...