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
456 views
in Technique[技术] by (71.8m points)

javascript - Find and get only number in string

Please help me solve this strange situation:

Here is code:

The link is so - www.blablabla.ru#3

The regex is so:

var id = window.location.href.replace(/D/, '' );
alert(id);

The regular expression is correct - it must show only numbers ... but it's not showing numbers :-(

Can you please advice me and provide some informations on how to get only numbers in the string ?

Thanks

See Question&Answers more detail:os

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

1 Answer

0 votes
by (71.8m points)

You're replacing only the first non-digit character with empty string. Try using:

var id = window.location.href.replace(/D+/g, '' ); alert(id);

(Notice the "global" flag at the end of regex).


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

2.1m questions

2.1m answers

60 comments

56.8k users

...