jmeter of regular expressions

jmeter commonly used in regular expressions

Metacharacters significance Qualifier significance
. Any single character + Matching at least greater than 1
\d Any single digit ? Match 0 or 1
[0-9] Equivalent to 0-9 * 0 substandard match many times, greedy match
[A-zA-Z] Equivalent to all uppercase and lowercase letters {n,}、{n,m}、{n} Defining a matching number of times

 

 

 

 

 

 

Match expression

Element + qualifier character. {11}

Guess you like

Origin www.cnblogs.com/htx18/p/11875802.html