# HG changeset patch # User Claus Gittinger # Date 1558682645 -7200 # Node ID ec133d719bed79a5570a5387fe6451478e6744a3 # Parent e3c4af5e8b20b1846ff85df2fc45db44268dd4ac #DOCUMENTATION by cg class: CharacterArray comment/format in: #withoutPrefix: #withoutPrefix:caseSensitive: diff -r e3c4af5e8b20 -r ec133d719bed CharacterArray.st --- a/CharacterArray.st Fri May 24 01:06:33 2019 +0200 +++ b/CharacterArray.st Fri May 24 09:24:05 2019 +0200 @@ -8453,10 +8453,13 @@ " 'helloworld' withoutPrefix:'hello' 'helloworld' withoutPrefix:'foo' + 'helloworld' withoutPrefix:$h + 'helloworld' withoutPrefix:#( $h ) " "Modified: / 30-04-2016 / 10:01:00 / cg" "Modified: / 31-07-2018 / 17:05:36 / Claus Gittinger" + "Modified (comment): / 24-05-2019 / 09:22:54 / Claus Gittinger" ! withoutPrefix:aStringOrCharacter caseSensitive:caseSensitive @@ -8473,12 +8476,15 @@ ^ self " - 'helloworld' withoutPrefix:'hello' - 'helloworld' withoutPrefix:'foo' + 'Helloworld' withoutPrefix:'hello' caseSensitive:false + 'Helloworld' withoutPrefix:'foo' caseSensitive:false + 'Helloworld' withoutPrefix:$h caseSensitive:false + 'Helloworld' withoutPrefix:#( $h ) caseSensitive:false " "Created: / 27-07-2018 / 08:30:03 / Claus Gittinger" "Modified: / 31-07-2018 / 17:05:53 / Claus Gittinger" + "Modified (comment): / 24-05-2019 / 09:23:30 / Claus Gittinger" ! withoutQuotes