[go] javascript regular expressions extract numbers using

Source: Internet
Author: User

Briefly:

Test the JS regular expression function match

Used to pick a number other than 0 from a string, put it in an array, and then output after join (', ').

Knowledge Points:

1. Use the match function to extract all the numbers in a string

The G in Reg returns all matches, and returns the first matching item if no G is added

2. If there is no match, a null list is returned

Code:

<!DOCTYPE HTML><HTML><Head>    <Scripttype= "Text/javascript">        functiongetnumlist () {varNums=document.getElementById ("numbers"). Value; varReg= /[1-9][0-9]*/G; varnumlist=Nums.match (REG); if(Numlist== NULL) {document.getElementById ("result"). InnerHTML= "No Legal Number input"; } Else{document.getElementById ("result"). InnerHTML=Numlist.join (","); }        }    </Script></Head><Body>    <P>Get numbers</P>    <inputtype= "text"ID= "Numbers"value= "123" />    <inputtype= "button"value= "Exec"onclick= "getnumlist ()" />    <P>Result<spanID= "Result"></span></P></Body></HTML>

Output:

[go] javascript regular expressions extract numbers using

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.