Skip to content
jehna edited this page Jul 20, 2013 · 5 revisions

Description: Append literal expression to the object. Also refreshes the expression.

Parameter Description
String expression Literal expression, not sanitized

Example: The following adds <br>-tag to all Windows-style line breaks

my_paragraph = VerEx().add( "\r\n" ).replace( my_paragraph, "<br>\r\n" );

Everything added to the expression should go trough this method (keep in mind when creating your own methods). All existing methods already use this, so for basic usage, you can just ignore this method.

Clone this wiki locally