Wiki

Changes between Version 24 and Version 25 of StandardLibraryExtensionMethods

Show
Ignore:
Timestamp:
06/04/13 04:41:03 (11 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • StandardLibraryExtensionMethods

    v24 v25  
    4343     
    4444                def before(sep as String) as String 
     45                        """  
     46                        Return the sub string before the given separator string. 
     47                        If there is no separator in the string return the entire String. 
     48                        """ 
    4549                        test 
    4650                                s = 'abc|de' 
     
    5155 
    5256                def after(sep as String) as String 
     57                        """ 
     58                        Return the sub string after the given separator string. 
     59                        If there is no separator in the string return an empty string. 
     60                        """ 
    5361                        test 
    5462                                s = 'abc|de'