AdobeStock_455007340

RegEx Matching of Nonprintable Characters

Home » RegEx Matching of Nonprintable Characters

The CFML REFind() and REReplace() functions (and related case-insensitive functions) provide access to Regular Expression processing within your CFML code. When writing Regular Expressions you may use the following escape sequences to refer to non-printable characters – n for new-line (ASCII 10), f for form-feed (ASCII 12), r for return (ASCII 13), t for tab (ASCII 9), and v for vertical tab (ASCII 11). (Applies to: ColdFusion 3 or later)

Leave a Reply