Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

The case of JS regular RegExp judging whether a text box contains special symbols

2025-03-30 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Internet Technology >

Share

Shulou(Shulou.com)06/02 Report--

This article is about the case of JS regular RegExp determining whether a text box contains special symbols. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.

Preface

Sometimes we want to determine whether the characters entered by the user in the text box contain special symbols (* / # $@), just as the password box is filled in when the user registers.

Demo

The above requirements can be realized gracefully by using the RegExp object:

/ / even (text box content) function (even) {/ / Rule object (flag) var flag = new RegExp ("[`~! @ # $^ & * () = | {}':;',\ [\]." /? ~! @ # ¥. & * ()-| {} []';: "'. , 、? ] ") / / determine whether even contains the special character if (flag.test (even)) {console.log ('include!') } else {console.log ('not included!') }}

There are many other special characters in the flag rule object, and the demo here is sufficient. For example, you can add other special characters as required by the project.

Another way

Js regularization determines whether it contains special symbols.

Function chack_name (str) {var pattern = new RegExp ("[`~! @ # $^ & * () = | {}':;',\ [\]." /? ~! @ # ¥. & * ()-- | {} []';: ",?]"); if (pattern.test (str)) {return true;} return false;} thank you for reading! This is the end of this article on "the case of JS regular RegExp judging whether the text box contains special symbols". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it out for more people to see!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 297

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Internet Technology

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report