+

Search Tips   |   Advanced Search

Common errors & tips

Use of the question mark

When working with URLs, pay particular attention to the use of the question mark (?), which is a special character that requires escaping with the backslash, for example: "/page\.html\?param1=value1" (the dot "." is also a special character).

Brackets

When using regexes in variable extractors, do not forget to use brackets to define the various groups. The " .*" and "(.*)" patterns may both match an expression, but only the pattern enclosed in brackets will extract the value by referring to the group using $groupNumber$. In certain cases, brackets need to be used to isolate part of a regex pattern, regardless of any group definition requirements. This must be taken into account when defining the groups whose values are to be extracted.

Spaces

A space is a normal character that must be taken into account in regexes. Check to make sure there are no extra spaces at the start or end of the regex, especially after cutting and pasting.

Multi-Line

The characters ".*" mean "matching any string of characters except line breaks". If the expression is tested over several lines, use "([^^]*?)", which includes line breaks.


Home