Index: func.sgml =================================================================== RCS file: /cvsroot/pgsql-server/doc/src/sgml/func.sgml,v retrieving revision 1.189 diff -u -r1.189 func.sgml --- func.sgml 29 Feb 2004 15:45:53 -0000 1.189 +++ func.sgml 4 Mar 2004 18:03:18 -0000 @@ -1157,11 +1157,13 @@ - ltrim(string text, characters text) + ltrim(string text + , characters text) + text Remove the longest string containing only characters from - characters from the start of + characters (a space by default) from the start of string. ltrim('zzzytrim', 'xyz') @@ -1255,12 +1257,13 @@ - rtrim(string - text, characters text) + rtrim(string text + , characters text) + text Remove the longest string containing only characters from - characters from the end of + characters (a space by default) from the end of string. rtrim('trimxxxx', 'x')