Changes between Version 24 and Version 25 of StandardLibraryExtensionMethods
- Timestamp:
- 06/04/13 04:41:03 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
StandardLibraryExtensionMethods
v24 v25 43 43 44 44 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 """ 45 49 test 46 50 s = 'abc|de' … … 51 55 52 56 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 """ 53 61 test 54 62 s = 'abc|de'