Escaping Regular Expression Backslash
The backslash is used in Regular expressions to prefix special commands and characters. To refer to a backslash you'll need to escape it as \. (Applies to: ColdFusion MX)
The backslash is used in Regular expressions to prefix special commands and characters. To refer to a backslash you'll need to escape it as \. (Applies to: ColdFusion MX)
If you need to refer to specific characters in Regular Expressions (even special ones like tab and new line) you may escape them using their hexadecimal or octal values. Hexadecimal values are specified in the format x00, and octal values are specified in the format 00. (Applies to: ColdFusion MX)
XSL files may contain comments, but don’t use the ColdFusion comment format of . Instead, use the HTML format, or use ... . (Applies to: ColdFusion MX)
To use XPath to search for partial matches use the substring() expression. (Applies to: ColdFusion MX)
XPath supports the use of basic mathematical operations allowing for data to be matched using mathematical expressions. Supported expressions include sum() and round(). (Applies to: ColdFusion MX)
XPath uses * in much the same way SQL does, it matches all elements (acts as a wildcard). (Applies to: ColdFusion MX)
To match all the XML elements of a specific name use an XPath search and specify // as the search pattern. (Applies to: ColdFusion MX)
is used, among other things, to set the page encoding to be used. must be included in each file that is to be processed, and cannot just be placed in Application.cfm. (Applies to: ColdFusion MX)
The default character encoding in ColdFusion MX is UTF-8, and this is the ideal encoding to use if you are creating multi-lingual and internationalized applications. (Applies to: ColdFusion MX)
Using SQL Server to store UNICODE data? If you are using the N datatypes (ntext or nvarchar, for example) be sure to prefix all constants with N (as in N'#var#') or the data could become corrupt. (Applies to: ColdFusion MX)