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

[TITLE]
split( self :string )

[DESCRIPTION]


     
   1  split( self :string, sep :string, quote = '', quote = '', rm = 1 ) => list<string>
     
Split the string by seperator sep, and return the tokens as a list. Quotation symbols 
may also be specified by quote to avoid breaking the string inside a pair of quotes. If 
the quotations symbols appear in the begin and end of a token and rm is true, they are 
removed. The seperators are not included in the result list.