Home Web Front-end JS Tutorial How to use regular expressions to find lookarounds

How to use regular expressions to find lookarounds

Mar 30, 2018 am 09:21 AM
Find regular

This time I will show you how to use regular expressions to find lookarounds, and what are the precautions for using regular expressions to find lookarounds. The following is a practical case, let's take a look.

The examples in this article describe the

regular expressionsfinding lookaround before and after the tutorial. Share it with everyone for your reference, as follows:

Note: In all examples, the regular expression matching results contain [ and ]## in the source text. #, some examples will be implemented using Java. If it is the usage of regular expressions in Java itself, it will be explained in the corresponding place. All java examples are tested under JDK1.6.0_13.

1. Introduction to the problem

In an HTML page, match the text between a pair of tags, such as matching the tags of the page, that is, < Text between title> and :

Text:

welcome to my page

Regular expression:

<[Tt][Ii][Tt][Ll][Ee]>.*?

Result:

welcome to my pageAnalysis: <[Tt][Ii][Tt][Ll][Ee]> means it is not case-sensitive. This pattern matches the title tag and the text between them, but it is not perfect. Because we only want the text between the title tags, not the tags themselves. To solve this problem we need to use lookaround.

2. Forward search

Forward search specifies a pattern that must match but is not returned in the result. Forward search is actually a subexpression, which starts with ?=, and the text to be matched follows =.

Look at an example of matching the protocol part of a URL address:

Text:

http://blog.csdn.net/mhmyqn

Regular expression: .

+(?=:)

Result:

[http]

://blog.csdn.net/mhmyqn Analysis: The protocol part in the URL address is the part before :, the pattern .+ matches any text, the subexpression (?=:) matches:, but the matched: does not appear in the result . We use ?= to indicate to the regular expression engine that as long as: is found, it will be fine, but it will not be included in the final return result. If you do not use forward matching (?=:) here, but use (:) directly, then the matching result will be http:, which includes:, which is not what we want.

Note: The front and back in front and back search refer to the relative position between the pattern and the text to be searched. The left is the front and the right is the back. That is, the forward search is: xxx(?=xxx), and the backward search is (?<=xxx)xxx. The backward search will be introduced next.

3. Backward search

The backward search operator is ?<=. However, not all regular expression implementations support backward search,

JavaScript

does not support it, and the Java language supports backward search. For example, if you want to find the price in the text (starting with $, followed by a number), the result does not contain the currency symbol:

Text:

category1:$136.25,category2:$28,category3: $88.60

Regular expression:

(?<=\$)\d+(\.\d+)?

Result:

category1: $

【136.25】,category2:$【28】,category3:$【88.60】 Analysis: (?< ;=\$) pattern matches $, \d+(\.\d+)? pattern matches integer or decimal. As can be seen from the results, the result does not include the currency symbol, but only the price. What would happen if we didn't use backward lookup? Use the pattern $\d+(\.\d+)?, which will include $ in the result. Using the pattern \d+(\.\d+)? will also match the numbers in category1(23), which is not what we want.

Note: The length of the forward search pattern is variable, they can contain metacharacters like ., *, +; while the backward search pattern can only be of fixed length, It cannot contain metacharacters such as ., *, +.

4. Combine forward search and backward search

Use forward search and backward search together to solve the previous# Problem with text between ##HTML tags :

Text:

welcome to my page

Regular expression:

(?<=<[Tt][Ii][Tt][Ll][Ee]>).*?(?=)

Result:

<span style="color: #3366ff">【welcome to my page】<span style="color: #ff6600">< /title></head></span></span></p> Analysis: It can be seen from the results that the problem is perfectly solved. (?<=<[Tt][Ii][Tt][Ll][Ee]>) is a backward operation, which matches <title> but does not consume it, (?=</[Tt ][Ii][Tt][Ll][Ee]>) is a forward operation that matches but does not consume it. The final matching result returned only contains the text between the tags.

5. Negate the forward and backward searches

The forward search and backward search mentioned above are usually used to match text, and their purpose is to determine whether The position of the text of the matched result that is returned (by specifying what text must be before and after the matched result). This usage is called forward search and forward search. There is also a negative forward search and a negative backward search, which find text that does not match a given pattern.

Operators for searching before and after:

##(?=)(?!)##(?<=)Positive backward search(?Negative backward search For example, there is a price (starting with $, followed by a number) and quantity in a piece of text. We want to find the price and quantity. Let's first look for the price:
Correct Forward search
Negative forward search
Text:

I paid $30 for 10 apples , 15 oranges, and 10 pears. I saved $5 on this order.

Regular expression:(?<=\$)\d+

Result :I paid

【$30】

for 10 apples, 15 oranges, and 10 pears. I saved 【$5】 on this order.

Find quantity:

Text:I paid $30 for 10 apples, 15 oranges, and 10 pears. I saved $5 on this order.

Regular expression: \b(?

Result: I paid $30 for

【10】

apples, 【15】 oranges, and 【10】pears. I saved $5 on this order.

I believe you have mastered the method after reading the case in this article. For more exciting information, please pay attention to other related articles on the php Chinese website!

Recommended reading:

Position matching tutorial of regular expression tutorial (with code)


Implemented with php and js Regularly matching passwords that combine numbers and letters

The above is the detailed content of How to use regular expressions to find lookarounds. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to turn off Find My iPhone How to turn off Find My iPhone Nov 09, 2023 pm 02:21 PM

What happens when you turn off Find My on iPhone? Find My iPhone helps you locate a lost or stolen device. When enabled, Find My iPhone lets you track your device's location on a map, plays sounds, and helps you find your device. Find My also includes an Activation Lock to prevent anyone from using your iPhone. When you turn off Find My iPhone, you lose all these features, which may make recovering a lost Apple device difficult. While Find My iPhone is very useful, you should disable it when you want to sell, donate, trade in your phone, or send it for battery replacement or any other service. Doing this will ensure that no one can access information about you

Find the index of an element in an array using the Array.IndexOf function in C# Find the index of an element in an array using the Array.IndexOf function in C# Nov 18, 2023 am 09:59 AM

Use the Array.IndexOf function in C# to find the index of an element in an array. In a C# program, when we need to find the index of an element in an array, we can use the Array.IndexOf function. The Array.IndexOf function finds the specified element within the specified array range and returns the index of its first occurrence. If the element is not found, -1 is returned. The following is a sample code that demonstrates how to use the Array.IndexOf function to find an element in an array.

4 Ways to Turn Off Find My on iPhone 4 Ways to Turn Off Find My on iPhone Feb 02, 2024 pm 04:15 PM

Apple's Find My app allows you to locate your iPhone or other device to prevent it from being lost or forgotten. While Find My is a useful tool for tracking devices, you may want to disable it if you're concerned about privacy issues, don't want to drain your battery, or for other reasons. Fortunately, there are several ways to turn off Find My on iPhone, all of which we will explain in this article. How to Turn off Find My on iPhone [4 Methods] You can turn off Find My on iPhone in four ways. If you used Method 1 to turn off Find, you can do this from the device you want to disable it on. To proceed with methods 2, 3, and 4, the iPhone that you want to turn off Find Finder should be powered off or

How to check the hard disk serial number and mac address How to check the hard disk serial number and mac address Feb 18, 2024 pm 07:45 PM

Hard drive serial numbers and MAC addresses are important identifiers in computer hardware and are very useful in managing and maintaining computer systems. This article will introduce how to find the hard disk serial number and MAC address. 1. Find the hard drive serial number. The hard drive serial number is a unique identifier used by the hard drive manufacturer to identify and track the hard drive. In different operating systems, the method of finding the hard drive serial number is slightly different. Windows: Open Command Prompt (search for "cmd" in the Start menu) and enter the following command and press Enter: wmicdisk

The glob() function in PHP is used to find files or directories The glob() function in PHP is used to find files or directories Nov 18, 2023 pm 06:17 PM

The glob() function in PHP is used to find files or directories and is a powerful file operation function. It can return the path of a file or directory based on a specified pattern match. The syntax of the glob() function is as follows: glob(pattern, flags) where pattern represents the pattern string to be matched, which can be a wildcard expression, such as *.txt (matching files ending with .txt), or a specific file path. flags is an optional parameter used to control the function

How to replace a string starting with something with php regular expression How to replace a string starting with something with php regular expression Mar 24, 2023 pm 02:57 PM

PHP regular expressions are a powerful tool for text processing and conversion. It can effectively manage text information by parsing text content and replacing or intercepting it according to specific patterns. Among them, a common application of regular expressions is to replace strings starting with specific characters. We will explain this as follows

How to match multiple words or strings using Golang regular expression? How to match multiple words or strings using Golang regular expression? May 31, 2024 am 10:32 AM

Golang regular expressions use the pipe character | to match multiple words or strings, separating each option as a logical OR expression. For example: matches "fox" or "dog": fox|dog matches "quick", "brown" or "lazy": (quick|brown|lazy) matches "Go", "Python" or "Java": Go|Python |Java matches words or 4-digit zip codes: ([a-zA

Find start and end index of elements in unsorted array in C++ Find start and end index of elements in unsorted array in C++ Aug 29, 2023 am 10:17 AM

In this problem, we are given an array aar[] containing n unsorted integer values ​​and an integer val. Our task is to find the start and end index of an element in an unsorted array. For occurrences of an element in the array, we will return, "start index and end index" (if found twice or more in the array). "Single index" (if found) "Element does not exist" if not present in the array. Let us take an example to understand the problem, Example 1Input:arr[]={2,1,5,4,6,2,3},val=2Output:startingindex=0,endingindex=5 explains that element 2 appears twice, The first time appears at index = 0, the second

See all articles