EMA-XPS Online


STRING-TRIM

STRING-TRIM
===========

syntax: (string-trim <characters> <string>)

This function produces a copy of the string, in 
which all characters were stripped off the 
beginning and end.

example:       >(string-trim "ac" "aabbcc")
               "bb"


EMA-XPS Online