⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 regular_expressions.html

📁 测试工具jmeter可用来进行性能测试
💻 HTML
字号:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<!--
   Licensed to the Apache Software Foundation (ASF) under one or more
   contributor license agreements.  See the NOTICE file distributed with
   this work for additional information regarding copyright ownership.
   The ASF licenses this file to You under the Apache License, Version 2.0
   (the "License"); you may not use this file except in compliance with
   the License.  You may obtain a copy of the License at

       http://www.apache.org/licenses/LICENSE-2.0

   Unless required by applicable law or agreed to in writing, software
   distributed under the License is distributed on an "AS IS" BASIS,
   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
   See the License for the specific language governing permissions and
   limitations under the License.
-->

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<title>JMeter - User's Manual: Regular Expressions</title>
</head>
<body bgcolor="#ffffff" text="#000000" link="#525D76">
<table border="0" cellspacing="0">
<tr>
<td colspan="2">
<a href="http://jakarta.apache.org"><img width="505" height="48" src="../../docs/images/jakarta-logo.gif" align="left" border="0"></a>
</td>
</tr>
</table>
<table border="0" cellspacing="4">
<tr><td>
<hr noshade size="1">
</td></tr>
<tr>
<td align="left" valign="top">
<table>
<tr>
<td bgcolor="#525D76">
<div align="right"><a href="index.html"><font size=-1 color="#ffffff" face="arial,helvetica,sanserif">Index</font></a></div>
</td>
<td bgcolor="#525D76">
<div align="right"><a href="glossary.html"><font size=-1 color="#ffffff" face="arial,helvetica,sanserif">Next</font></a></div>
</td>
<td bgcolor="#525D76">
<div align="right"><a href="functions.html"><font size=-1 color="#ffffff" face="arial,helvetica,sanserif">Prev</font></a></div>
</td>
</tr>
</table>
<br>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#525D76">
<font color="#ffffff" face="arial,helvetica,sanserif">
<a name="regex"><strong>20. Regular Expressions</strong></a>
</font>
</td></tr>
<tr><td>
<blockquote>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<a name="overview"><strong>20.1 Overview</strong></a>
</font>
</td></tr>
<tr><td>
<blockquote>
<p>

JMeter includes the pattern matching software 
<a href="http://jakarta.apache.org/oro/">
Apache Jakarta ORO
</a>


<br>
</br>

There is some documentation for this on the Jakarta web-site, for example 

<a href="http://jakarta.apache.org/oro/api/org/apache/oro/text/regex/package-summary.html">

a summary of the pattern matching characters
</a>


</p>
<p>

There is also documentation on an older incarnation of the product at 

<a href="http://www.savarese.org/oro/docs/OROMatcher/index.html">
OROMatcher User's guide
</a>
, which might prove useful. 

</p>
<p>

The pattern matching is very similar to the pattern matching in Perl. 
A full installation of Perl will include plenty of documentation on regular expressions - look for perlrequick, perlretut, perlre, perlreref.

</p>
<p>

It is worth stressing the difference between "contains" and "matches", as used on the Response Assertion test element:

</p>
<ul>


<li>

"contains" means that the regular expression matched at least some part of the target, 
so 'alphabet' "contains" 'ph.b.' because the regular expression matches the substring 'phabe'.

</li>


<li>

"matches" means that the regular expression matched the whole target. 
So 'alphabet' is "matched" by 'al.*t'. 

</li>


</ul>
<p>
In this case, it is equivalent to wrapping the regular expression in ^ and $, viz '^al.*t$'. 

</p>
<p>
However, this is not always the case. 
For example, the regular expression 'alp|.lp.*' is "contained" in 'alphabet', but does not match 'alphabet'.

</p>
<p>
Why? Because when the pattern matcher finds the sequence 'alp' in 'alphabet', it stops trying any other combinations - and 'alp' is not the same as 'alphabet', as it does not include 'habet'.

</p>
<p>

Note: unlike Perl, there is no need to (i.e. do not) enclose the regular expression in //. 

</p>
<p>

So how does one use the modifiers ismx etc if there is no trailing /? 
The solution is to use 
<i>
extended regular expressions
</i>
, i.e. /abc/i becomes (?i)abc.
See also 
<a href="placement">
Placement of modifiers
</a>
 below.

</p>
</blockquote>
</td></tr>
<tr><td><br></td></tr>
</table>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<a name="examples"><strong>20.2 Examples</strong></a>
</font>
</td></tr>
<tr><td>
<blockquote>
<p>

Extract single string

<br>
</br>

Suppose you want to match the following portion of a web-page: 

<br>
</br>

name="file" value="readme.txt" and you want to extract readme.txt.

<br>
</br>

A suitable reqular expression would be:

<br>
</br>

name="file" value="(.+?)"

<p>

The special characters above are:

</p>


<ul>


<li>
( and ) - these enclose the portion of the match string to be returned
</li>


<li>
. - match any character. + - one or more times. 
? - don't be greedy, i.e. stop when first match succeeds
</li>


</ul>


<p>

Note: without the ?, the .+ would continue past the first " until it found the last possible " - probably not what was intended.

</p>


<p>
Extract multiple strings
</p>


Suppose you want to match the following portion of a web-page: name="file.name" value="readme.txt" and you want to extract file.name and readme.txt.

<br>
</br>

A suitable reqular expression would be:

<br>
</br>

name="(.+?)" value="(.+?)"

<br>
</br>

This would create 2 groups, which could be used in the JMeter Regular Expression Extractor template as $1$ and $2$.

<p>

The JMeter Regex Extractor saves the values of the groups in additional variables.

</p>


<p>

For example, assume:

</p>


<ul>


<li>
Reference Name: MYREF
</li>


<li>
Regex: name="(.+?)" value="(.+?)"
</li>


<li>
Template: $1$$2$
</li>


</ul>


<p><table border="1" bgcolor="#bbbb00" width="50%" cellspacing="0" cellpadding="2">
<tr><td>Do not enclose the regular expression in / /
</td></tr>
</table></p>


<p>

The following variables would be set:

</p>


<ul>


<li>
MYREF: file.namereadme.txt
</li>


<li>
MYREF_g0: name="file.name" value="readme.txt"
</li>


<li>
MYREF_g1: file.name
</li>


<li>
MYREF_g2: readme.txt
</li>


</ul>

These variables can be referred to later on in the JMeter test plan, as ${MYREF}, ${MYREF_g1} etc 

</p>
</blockquote>
</td></tr>
<tr><td><br></td></tr>
</table>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<a name="line_mode"><strong>20.3 Line mode</strong></a>
</font>
</td></tr>
<tr><td>
<blockquote>
<p>
The pattern matching behaves in various slightly different ways, 
depending on the setting of the multi-line and single-line modifiers.
Note that the single-line and multi-line operators have nothing to do with each other;
they can be specified independently.

</p>
<h3>
Single-line mode
</h3>
<p>

Single-line mode only affects how the '.' meta-character is interpreted.

</p>
<p>

Default behaviour is that '.' matches any character except newline. 
In single-line mode, '.' also matches newline.

</p>
<h3>
Multi-line mode
</h3>
<p>

Multi-line mode only affects how the meta-characters '^' and '$' are interpreted.

</p>
<p>

Default behaviour is that '^' and '$' only match at the very beginning and end of the string. 
When Multi-line mode is used, the '^' metacharacter matches at the beginning of every line,
and the '$' metacharacter matches at the end of every line.
</p>
</blockquote>
</td></tr>
<tr><td><br></td></tr>
</table>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<a name="meta_chars"><strong>20.4 Meta characters</strong></a>
</font>
</td></tr>
<tr><td>
<blockquote>
<p>

Regular expressions use certain characters as meta characters - these characters have a special meaning to the RE engine.
Such characters must be escaped by preceeding them with \ (backslash) in order to treat them as ordinary characters.
Here is a list of the meta characters and their meaning (please check the ORO documentation if in doubt).

</p>
<ul>


<li>
( ) - grouping
</li>


<li>
[ ] - character classes
</li>


<li>
{ } - repetition
</li>


<li>
* + ? - repetition
</li>


<li>
. - wild-card character
</li>


<li>
\ - escape character
</li>


<li>
| - alternatives
</li>


<li>
^ $ - start and end of string or line
</li>


</ul>
<p>
Please note that ORO does not support the \Q and \E meta-characters.
[In other RE engines, these can be used to quote a portion of an RE so that the meta-characters stand for themselves.]
</p>
</blockquote>
</td></tr>
<tr><td><br></td></tr>
</table>
<table border="0" cellspacing="0" cellpadding="2" width="100%">
<tr><td bgcolor="#828DA6">
<font color="#ffffff" face="arial,helvetica,sanserif">
<a name="placement"><strong>20.5 Placement of modifiers</strong></a>
</font>
</td></tr>
<tr><td>
<blockquote>
<p>

Modifiers can be placed anywhere in the regex, and apply from that point onwards.
[A bug in ORO means that they cannot be used at the very end of the regex.
However they would have no effect there anyway.]

</p>
<p>

The single-line (?s) and multi-line (?m) modifiers are normally placed at the start of the regex.

</p>
<p>

The ignore-case modifier (?i) may be usefully applied to just part of a regex,
for example:

<pre>

Match ExAct case or (?i)ArBiTrARY(?-i) case

</pre>


</p>
</blockquote>
</td></tr>
<tr><td><br></td></tr>
</table>
</blockquote>
</p>
</td></tr>
<tr><td><br></td></tr>
</table>
<br>
<table>
<tr>
<td bgcolor="#525D76">
<div align="right"><a href="index.html"><font size=-1 color="#ffffff" face="arial,helvetica,sanserif">Index</font></a></div>
</td>
<td bgcolor="#525D76">
<div align="right"><a href="glossary.html"><font size=-1 color="#ffffff" face="arial,helvetica,sanserif">Next</font></a></div>
</td>
<td bgcolor="#525D76">
<div align="right"><a href="functions.html"><font size=-1 color="#ffffff" face="arial,helvetica,sanserif">Prev</font></a></div>
</td>
</tr>
</table>
</td>
</tr>
<tr><td>
<hr noshade size="1">
</td></tr>
<tr>
<td>
<table width=100%>
<tr>
<td>
<font color="#525D76" size="-1"><em>
Copyright &copy; 1999-2008, Apache Software Foundation
</em></font>
</td>
<td align="right">
<font color="#525D76" size="-1"><em>
Updated: $Date: 2008-05-12 23:26:26 +0100 (Mon, 12 May 2008) $
</em></font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>




























⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -