Contact information in asp Regular Expression filtering content

Source: Internet
Author: User

Function repnum (strng) 'returns an array
I = 0
Set regex = new regexp
Regex. pattern = "(d +)" '"[0-9]"
Regex. ignorecase = true
Regex. global = true
Set matches = regex.exe cute (strng)
For each match in matches
'Retstr = retstr & "<br>" & match. value
If len (match. value)> = 5 then
Strng = replace (strng, right (match. value, 4 ),"***")
End if
I = I + 1
Next
Repnum = strng
End function
<% = Repnum (content) %> is used directly. The running result is that some numbers in the content string are replaced with *** to hide the contact information. If you think there are more numbers left, change the corresponding number in this function.


Add a related function.

Function: extracts all numbers from a string using the regular expression in the asp tutorial.
Parameter: strng indicates the content to be extracted.
Function regexptest (strng) 'returns an array
I = 0
Set regex = new regexp
Regex. pattern = "(d +)" '"[0-9]"
Regex. ignorecase = true
Regex. global = true
Set matches = regex.exe cute (strng)
For each match in matches
Retstr = retstr & "<br>" & match. value' output the extracted number
I = I + 1
Next
Regexptest = retstr
End function
Usage method <% = regexptest (content) %>. The running result is all the numbers in the content string and the line breaks.

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.