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

Categories

0 votes
704 views
in Technique[技术] by (71.8m points)

how to parse string to int in javascript

i want int from string in javascript how i can get them from

test1 , stsfdf233, fdfk323,

are anyone show me the method to get the integer from this string.

it is a rule that int is always in the back of the string.

how i can get the int who was at last in my string

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)
var s = 'abc123';
var number = s.match(/d+$/);
number = parseInt(number, 10);

The first step is a simple regular expression - d+$ will match the digits near the end.
On the next step, we use parseInt on the string we've matched before, to get a proper number.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...