Paraccel String
- overlay
Returns the "string_expression1", replacing "string_expression2" from character position numeric_expression. - ltrim
Returns "string_expression1", with leading characters removed up to the first character not in "string_expression2"; for example, ltrim ( 'xyxXxyAB' , 'xy' ) returns XxyAB. - replace
Returns "string_expression", having replaced "string_expression2" with "string_expression3". - rtrim
Returns "string_expression1", with final characters removed after the last character not in "string_expression2"; for example, rtrim ( 'ABxXxyx' , 'xy' ) returns ABxX. If "string_expression2" is not specified, the final space characters are removed.
Parent topic: Paraccel