FlashFXP: Help File (Online Edition)

Send comments on this topic.

Navigation: Reference > Pattern Matching (Regular Expressions) >


Regular Expression Examples

 

When using regular expressions in place of simple wildcard matching the expression must be prefixed with "RX: " as illustrated below.

 

Regular expression equal to simple wildcard match of *.html
matchs any strings with .html at the end

rx: .*\.html$

 

Regular expression equal to simple wildcard match of *.html*

matches any strings that contain .html

rx: .*\.html

 

Regular expression equal to simple wildcard match of *.html and *.htm

matches any string with .htm or .html at the end

rx: .*\.htm.$

 

 

Important Notes

In FlashFXP's regular expression implementation all characters are handled case insensitive by default.

Use (?-i) to turn on case sensitivity.

Last modified: Tuesday, January 24, 2017

Copyright © 2010-2017 OpenSight Software, LLC