[NAME]
ALL.dao.type.string.method

[TITLE]
Dao string methods

[DESCRIPTION]


     
   1  chop( self :string )
   2  clear( self :string )
   3  convert( self :string, to :enum<mbs, wcs> ) => string
   4  erase( self :string, start = 0, n = -1 )
   5  find( self :string, str : string, from = 0, reverse = 0 ) => int
   6  insert( self :string, str : string, index = 0 )
   7  replace( self :string, str1 : string, str2 : string, index = 0 )
   8  replace( self :string, str1 : string, table : map<string,string>, max=0 )
   9  expand( self :string, keys :map<string,string>, spec='$', keep=1 )
  10  expand( self :string, keys : tuple, spec='$', keep=1 )
  11  resize( self :string, size : int )
  12  size( self :string ) => int
  13  split( self :string, sep : string, quote="", rm=1 ) => list<string>
  14  tolower( self :string ) => string
  15  toupper( self :string ) => string
  16  trim( self :string ) => string
  17  type( self :string ) => enum<mbs, wcs>
     

See the subentries listed below for details.


[STRUCTURE]

dao.type.string.method--| dao.type.string.method: Dao string methods (4.9 KB)
                        |--chop-----| dao.type.string.method.chop: chop( self :string ) (0.3 KB)
                        |--erase----| dao.type.string.method.erase: erase( self :string ) (0.2 KB)
                        |--find-----| dao.type.string.method.find: find( self :string ) (0.3 KB)
                        |--insert---| dao.type.string.method.insert: insert( self :string ) (0.4 KB)
                        |--replace--| dao.type.string.method.replace: replace( self :string ) (0.5 KB)
                        |--expand---| dao.type.string.method.expand: expand( self :string ) (1.5 KB)
                        |--resize---| dao.type.string.method.resize: resize( self :string ) (0.1 KB)
                        |--size-----| dao.type.string.method.size: size( self :string ) (0.1 KB)
                        |--split----| dao.type.string.method.split: split( self :string ) (0.5 KB)
                        |--tolower--| dao.type.string.method.tolower: tolower( self :string ) (0.1 KB)
                        |--toupper--| dao.type.string.method.toupper: toupper( self :string ) (0.1 KB)