DOC HOME SITE MAP MAN PAGES GNU INFO SEARCH
 

(guile.info.gz) SRFI-13 Case Mapping

Info Catalog (guile.info.gz) SRFI-13 Searching (guile.info.gz) SRFI-13 (guile.info.gz) SRFI-13 Reverse/Append
 
 39.11.10 Alphabetic Case Mapping
 --------------------------------
 
 These procedures convert the alphabetic case of strings.  They are
 similar to the procedures in the Guile core, but are extended to handle
 optional start/end indices.
 
  -- Scheme Procedure: string-upcase s [start end]
  -- Scheme Procedure: string-upcase! s [start end]
      Upcase every character in S.  `string-upcase!' is the
      side-effecting variant.
 
  -- Scheme Procedure: string-downcase s [start end]
  -- Scheme Procedure: string-downcase! s [start end]
      Downcase every character in S.  `string-downcase!' is the
      side-effecting variant.
 
  -- Scheme Procedure: string-titlecase s [start end]
  -- Scheme Procedure: string-titlecase! s [start end]
      Upcase every first character in every word in S, downcase the
      other characters.  `string-titlecase!' is the side-effecting
      variant.
 
Info Catalog (guile.info.gz) SRFI-13 Searching (guile.info.gz) SRFI-13 (guile.info.gz) SRFI-13 Reverse/Append
automatically generated byinfo2html