Module "encode_regex"
=====================

Regex encoder
 
function encode_regex(text);
----------------------------

This function gets a text as parameter and returns the same text with all
characters escaped which do have a special meaning in regular expressions.

The primary use of this function is to include a text in a regular
expression as it is.

This function is designed to be used with the encoding/quoting operator (::).
 
