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

What are the basic grammatical characters of C #

2025-01-18 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

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

This article mainly explains "what are the basic grammatical characters of C#". Interested friends may wish to have a look. The method introduced in this paper is simple, fast and practical. Let's let the editor take you to learn "what are the basic grammar characters of C#"?

Basic grammatical characters of C # regular expressions

\ d the number of 0-9

The complement of\ D\ d (with all characters as the complete set, the same below), that is, all non-numeric characters

\ w word characters, which refer to uppercase and lowercase letters, 0-9 numbers, underscores

Complement of\ W\ w

\ s white space characters, including line feed\ n, carriage return\ r, tab\ t, vertical tab\ v, page feed\ f

Complement of\ S\ s

. Any character except the newline character\ n

[.] Match all the characters listed in []

[^...] Match characters not listed in []

Here are some examples of basic syntax characters for simple C# regular expressions:

String I = "\ n"; string m = "3"; Regex r = new Regex (@ "\ D"); / / same as Regex r = new Regex ("\\ D"); / / r.IsMatch (I) result: true / / r.IsMatch (m) result: false string i = "%"; string m = "3"; Regex r = new Regex ("[a-z0-9]") / / match lowercase letters or numeric characters / / r.IsMatch (I) result: false / / r.IsMatch (m) result: true so far, I believe you have a deeper understanding of "what are the basic grammatical characters of C#", you might as well do it in practice! Here is the website, more related content can enter the relevant channels to inquire, follow us, continue to learn!

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: 0

*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

Development

Wechat

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

12
Report