


Compress_Delimiters
Purpose
Translates all contiguous occurrences of any of the character(s) in <str1> found in <expr> to a single occurrences of <str2>.
Arguments
Compress_Delimiters( <expr>, <str1>, <str2> )
Example
Compress_Delimiters( "A*B***C*D", "*", "@" )
Returns: "A@B@C@D"