当前位置:网站首页>Introduction and underlying analysis of regular expressions
Introduction and underlying analysis of regular expressions
2022-07-06 06:36:00 【Yaya yaya】
Regular expressions
Regular expression Introduction
Also known as regular expression ( English :Regular Expression, In code it is often abbreviated as regex、regexp or RE), Computer science A concept of . Regular expressions are often used for retrieval 、 Replace those that match a pattern ( The rules ) The text of .
Many programming languages support string manipulation with regular expressions . for example , stay Perl A powerful regular expression engine is built in . The concept of regular expression was originally developed by Unix Tool software in ( for example sed and grep) Popular . Regular expressions are usually abbreviated to “regex”, singular Yes regexp、regex, The plural Yes regexps、regexes、regexen.
Regular expressions are easy to use
Suppose you use a crawler to crawl this content on the website , How to quickly get the English letters or numbers in this paragraph ? Regular expressions are used at this time
Python from Netherlands mathematics and Computer science Research Society Guido · Van rosum On 1990 It was designed in the early 's , As a course called ABC Language substitute . [1] Python Provides an efficient advanced data structure , It can also simply and effectively object-oriented Programming .Python Syntax and dynamic types , as well as Explanatory language The essence of , Make it written on most platforms Script And a programming language for rapid application development , [2] With the continuous update of the version and the addition of new language features , Gradually used for independent 、 A large project Development of . [3] Python Interpreter extensible , have access to C Language or C++( Or something else can be done through C Calling language ) Expand new features and data type . [4] Python It can also be used as an extensible programming language in customizable software .Python Rich library of standards , It provides a platform for each main system platform Source code or Machine code . [4] 2021 year 10 month , Compiler for language popularity index Tiobe take Python Crowned the most popular programming language ,20 Put it in... For the first time in years Java、C and JavaScript above .
package regularexpression;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
public class RegularExpression {
public static void main(String[] args) {
// Suppose you use a crawler to crawl to this content
String context = "Python By Guido of the Dutch Society for mathematical and computer science research · Van rosum On 1990 It was designed in the early 's ," +
" As a course called ABC A substitute for language . [1] Python Provides efficient advanced data structure , It can also simply and effectively ground " +
" Programming objects .Python Syntax and dynamic types , And the nature of interpretative language , Make it easy to write scripts and fast on most platforms " +
" Programming language for developing applications , [2] With the continuous update of the version and the addition of new language features , Gradually used for independent 、 A large project " +
" Development of . [3] "+"Python The interpreter is easy to extend , have access to C Language or C++( Or something else can be done through C Calling language )" +
" Expand new functions and data classes " +
" type . [4] Python It can also be used as an extensible programming language in customizable software .Python Rich library of standards , Provides a " +
" Source code or machine code of three main system platforms . [4] " +
"2021 year 10 month , Compiler for language popularity index Tiobe take Python Crowned the most popular programming language ,20 For the first time in years " +
" On Java、C and JavaScript above . [16] ";
// Extract all English words in the article
// So let's create one Pattern object
Pattern pattern = Pattern.compile("[a-zA-Z]+");
// Create a match object
// Namely matcher The matcher follows pattern Model claims , To context Match in text
// Find and return true Return if not found false
Matcher matcher = pattern.matcher(context);
// Begin to match
while (matcher.find()){
// The matching content will be in matcher.group(0) in
System.out.println(" find " + matcher.group(0));
}
}
}
The running result is
When we need to get the numbers in the text , Just put this statement
Pattern pattern = Pattern.compile("[a-zA-Z]+");
Replace with
Pattern pattern = Pattern.compile("[0-9]+");
The running result is
If you want to capture the year related, you will
Pattern pattern = Pattern.compile("[0-9]+");
Replace with
\ \d
Represents any number
Pattern pattern = Pattern.compile(""\\d\\d\\d\\d"");
The running result is
analysis
martch.find() The task accomplished
- According to rules , Locate the substring that meets the rule
- After finding , Record the index of Zizi very beginning to
matcher
Object propertiesint[] groups
;groups[0] = 31
, Put the word string of lodging Indexes +1 The value of is recorded togroups[1] = 35
Perform breakpoint debugging here , It turns out that there is one groups
When we took a step forward, we found groups Array groups[0] = 31
groups[1] = 35
Is precisely 1990 Index position in text .
- It will also record
oldLast
Value , Ending with a substring Indexes +1 The value is 35 , That is, the next execution find When , From 35 This position starts to match .
march.group(0) analysis
We go through group
Source code
public String group(int group) {
if (this.first < 0) {
throw new IllegalStateException("No match found");
} else if (group >= 0 && group <= this.groupCount()) {
return this.groups[group * 2] != -1 && this.groups[group * 2 + 1] != -1 ? this.getSubSequence(this.groups[group * 2], this.groups[group * 2 + 1]).toString() : null;
} else {
throw new IndexOutOfBoundsException("No group " + group);
}
}
- according to
groups[0] = 31
andgroups[1] = 35
The location of the record , from content Start to intercept the string and put it back . That is to say, what is returned is [31,35) The position of the index in the interval . - If the execution continues
find
Method Still follow the above rules .
When will
Pattern pattern = Pattern.compile(""\\d\\d\\d\\d"");
Change to grouping , The first bracket is the first group , The second bracket is the second group .
Pattern pattern = Pattern.compile("(\\d\\d)(\\d\\d)");
According to rules , Locate the substring that meets the rule
After finding , Record the index of Zizi very beginning to matcher Object properties int[] groups; groups[0] = 31 , Put the Indexes +1 The value of is recorded to
groups[1] = 35
.Record the first group () Matching string
groups[2] = 31
groups[3] = 33
Because the matching string is 1980 therefore 19 Is the location of the first group , Again because 1 The index is 31,9 The index is 32 therefore groups[2] = 31 groups[3] = 33
Record the second group () Matching string
groups[3] = 33
groups[4] = 35
If there are more groups, and so on
Pictured
take while
Change the code in to
while (matcher.find()){
// The matching content will be in matcher.group(0) in
System.out.println(" find " + matcher.group(0));
System.out.println(" The first group () The match is " + matcher.group(1));
System.out.println(" The second group () The match is " + matcher.group(2));
}
The running result is
Summary : If the regular expression has () That is, grouping , The extracted string rule is group(0)
Represents the matched string ,group(1)
Represents the first set of characters in the matched substring ,group(2)
Represents the second set of characters in the matched substring . Be careful !! The number of groups cannot exceed the limit .
边栏推荐
- SQL Server manager studio(SSMS)安装教程
- An article was uncovered to test the truth of outsourcing companies
- 翻译公司证件盖章的价格是多少
- Luogu p2141 abacus mental arithmetic test
- Simulation volume leetcode [general] 1109 Flight reservation statistics
- CS passed (cdn+ certificate) PowerShell online detailed version
- 国际经贸合同翻译 中译英怎样效果好
- Black cat takes you to learn UFS protocol Chapter 18: how UFS configures logical units (Lu Management)
- Simulation volume leetcode [general] 1219 Golden Miner
- Data security -- 13 -- data security lifecycle management
猜你喜欢
[mqtt from getting started to improving series | 01] quickly build an mqtt test environment from 0 to 1
Past and present lives of QR code and sorting out six test points
[ 英語 ] 語法重塑 之 動詞分類 —— 英語兔學習筆記(2)
字幕翻译中翻英一分钟多少钱?
Address bar parameter transmission of list page based on jeecg-boot
MySQL5.72. MSI installation failed
Private cloud disk deployment
Basic knowledge of MySQL
Technology sharing | common interface protocol analysis
[ 英语 ] 语法重塑 之 英语学习的核心框架 —— 英语兔学习笔记(1)
随机推荐
A 27-year-old without a diploma, wants to work hard on self-study programming, and has the opportunity to become a programmer?
Simulation volume leetcode [general] 1143 Longest common subsequence
Engineering organisms containing artificial metalloenzymes perform unnatural biosynthesis
模拟卷Leetcode【普通】1249. 移除无效的括号
钓鱼&文件名反转&office远程模板
Apple has open source, but what about it?
JDBC requset corresponding content and function introduction
Modify the list page on the basis of jeecg boot code generation (combined with customized components)
Mise en œuvre d’une fonction complexe d’ajout, de suppression et de modification basée sur jeecg - boot
How to convert flv file to MP4 file? A simple solution
org.activiti.bpmn.exceptions.XMLException: cvc-complex-type.2.4.a: 发现了以元素 ‘outgoing‘ 开头的无效内容
The whole process realizes the single sign on function and the solution of "canceltoken" of undefined when the request is canceled
Changes in the number of words in English papers translated into Chinese
Redis core technology and basic architecture of actual combat: what does a key value database contain?
Py06 dictionary mapping dictionary nested key does not exist test key sorting
How to translate professional papers and write English abstracts better
中英对照:You can do this. Best of luck祝你好运
Avtiviti创建表时报错:Error getting a new connection. Cause: org.apache.commons.dbcp.SQLNestedException
云服务器 AccessKey 密钥泄露利用
[ 英語 ] 語法重塑 之 動詞分類 —— 英語兔學習筆記(2)