Whitespace cleanup.
authorBruce Momjian
Thu, 11 Oct 2007 02:43:55 +0000 (02:43 +0000)
committerBruce Momjian
Thu, 11 Oct 2007 02:43:55 +0000 (02:43 +0000)
doc/src/sgml/func.sgml

index aef648e79d7a0e62644cd53c2f9daa9c3f1cfb0f..0eeb1545d985e2e56777710ed6650554208673ee 100644 (file)
@@ -1,4 +1,4 @@
-
+
 
  
   Functions and Operators
         Also there are some pre-defined conversions. See 
         linkend="conversion-names"> for available conversions.
        
-       convert( 'text_in_utf8', 'UTF8', 'LATIN1')
+       convert('text_in_utf8', 'UTF8', 'LATIN1')
        text_in_utf8 represented in ISO 8859-1 encoding
       
 
         is specified by src_encoding. The
         string must be valid in this encoding.
        
-       convert_from( 'text_in_utf8', 'UTF8')
+       convert_from('text_in_utf8', 'UTF8')
        text_in_utf8 represented in the current database encoding
       
 
        
         Convert string to dest_encoding.
        
-       convert_to( 'some text', 'UTF8')
+       convert_to('some text', 'UTF8')
        some text represented in the UTF8 encoding
       
 
         Escape merely outputs null bytes as \000 and
         doubles backslashes.
        
-       encode( E'123\\000\\001', 'base64')
+       encode(E'123\\000\\001', 'base64')
        MTIzAAE=
              
 
         in an SQL statement string.
         Embedded single-quotes and backslashes are properly doubled.
        
-       quote_literal( 'O\'Reilly')
+       quote_literal('O\'Reilly')
        'O''Reilly'
       
 
        Replace all occurrences in string of substring
         from with substring to
        
-       replace( 'abcdefabcdef', 'cd', 'XX')
+       replace('abcdefabcdef', 'cd', 'XX')
        abXXefabXXef
       
 
        octet_length(string)
        int
        Number of bytes in binary string
-       octet_length( E'jo\\000se'::bytea)
+       octet_length(E'jo\\000se'::bytea)
        5