CharacterArray.st
author Claus Gittinger <cg@exept.de>
Thu, 30 Jan 2020 09:41:01 +0100
changeset 25217 a8b6bc875e30
parent 25204 b12f8693fe6f
child 25218 b58377fa84e0
permissions -rw-r--r--
#DOCUMENTATION by exept class: CharacterArray added: #asActionLinkTo:info: comment/format in: #asActionLinkTo:
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
     1
"{ Encoding: utf8 }"
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
     2
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
     3
"
af7aeb79b25e Initial revision
claus
parents:
diff changeset
     4
 COPYRIGHT (c) 1994 by Claus Gittinger
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
     5
              All Rights Reserved
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
     6
af7aeb79b25e Initial revision
claus
parents:
diff changeset
     7
 This software is furnished under a license and may be used
af7aeb79b25e Initial revision
claus
parents:
diff changeset
     8
 only in accordance with the terms of that license and with the
af7aeb79b25e Initial revision
claus
parents:
diff changeset
     9
 inclusion of the above copyright notice.   This software may not
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    10
 be provided or otherwise made available to, or used by, any
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    11
 other person.  No title to or ownership of the software is
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    12
 hereby transferred.
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    13
"
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
    14
"{ Package: 'stx:libbasic' }"
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
    15
17364
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
    16
"{ NameSpace: Smalltalk }"
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
    17
14137
1eb1b4a3f364 Inherit from UninterpretedBytes instead of ByteArray
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
    18
UninterpretedBytes variableByteSubclass:#CharacterArray
24557
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
    19
	instanceVariableNames:''
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
    20
	classVariableNames:'DecoderTables DecodingFailedSignal EncoderTables
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
    21
		EncodingFailedSignal PreviousMatches UnicodeDenormalizationMap
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
    22
		UnicodeNormalizationMap'
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
    23
	poolDictionaries:''
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
    24
	category:'Collections-Text'
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    25
!
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    26
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
    27
!CharacterArray class methodsFor:'documentation'!
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    28
82
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    29
copyright
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    30
"
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    31
 COPYRIGHT (c) 1994 by Claus Gittinger
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
    32
              All Rights Reserved
82
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    33
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    34
 This software is furnished under a license and may be used
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    35
 only in accordance with the terms of that license and with the
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    36
 inclusion of the above copyright notice.   This software may not
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    37
 be provided or otherwise made available to, or used by, any
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    38
 other person.  No title to or ownership of the software is
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    39
 hereby transferred.
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    40
"
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    41
!
0147b4f725ae *** empty log message ***
claus
parents: 77
diff changeset
    42
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    43
documentation
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    44
"
255
2b2c5c0facab *** empty log message ***
claus
parents: 247
diff changeset
    45
    CharacterArray is a superclass for all kinds of Strings (i.e.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
    46
    (singleByte-)Strings, TwoByteStrings, UnicodeStrings
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    47
    and whatever may come in the future.
18318
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    48
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    49
    This class is abstract, meaning that there are no instances of it;
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    50
    concrete subclasses define how the characters are stored (i.e. either as
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    51
    single byte, two-byte or four byte strings).
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    52
2537
9398b135cec4 comment
Claus Gittinger <cg@exept.de>
parents: 2520
diff changeset
    53
    All this class does is provide common protocol for concrete subclasses.
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
    54
18318
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    55
    Notice:
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    56
        internally, ST/X uses a unicode encoding for ALL characters - both
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    57
        for individual chatacter entities and for strings of characters.
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    58
        When reading/writing files in different encodings, the conversion is
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    59
        done at read/write time by use of a CharacterEncoder instance.
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    60
        These know how to convert to a wide range of encodings.
18318
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    61
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    62
    Also notice:
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    63
        UTF8 and UTF16 are external encodings of a Unicode string; they are never
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    64
        used internally. When interacting with a UTF8 interface (OS-API or files),
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    65
        you should convert UTF8 into the internal full Unicode right at the interface.
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    66
        Do not keep UTF8 around internally as String instances.
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    67
        The reason is that UTF8 makes it harder to manipulate strings (for example
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    68
        to insert/extract substrings or to get its size. Of such operations would
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    69
        require a scan of the UTF8, which would complicate them).
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    70
        Of course, there may be rare exceptions to this, for example if a file's contents
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    71
        is treated as raw data, and the strings have to be copied/shuffled around only,
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    72
        without any real processing on it.
18318
c9687a5e7ee7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18269
diff changeset
    73
23936
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    74
    [about hashing:]
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    75
        the ST/X VM uses the fnv1 hash (*) to quickly retrieve symbols,
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    76
        This has only 1 collision in my current systm with 66k symbols.
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    77
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    78
        To try, evaluate:
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    79
            ((Symbol allInstances collect:#hash_fnv1a as:Bag)
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    80
                valuesAndCountsSelect:[:h :cnt | cnt > 1]) size
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    81
        in contrast, java hash is much worse (18 collisions):
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    82
            ((Symbol allInstances collect:#hash_java as:Bag)
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    83
                valuesAndCountsSelect:[:h :cnt | cnt > 1]) size
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    84
        and hash_sdbm hash is even better (0 collisions),
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    85
        but slightly slower:
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    86
            ((Symbol allInstances collect:#hash_sdbm as:Bag)
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    87
                valuesAndCountsSelect:[:h :cnt | cnt > 1]) size
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    88
        we could use CRC32 (also with 0 collisions), 
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    89
        but that is slower on machines without CRC instruction:
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    90
            ((Symbol allInstances collect:[:s | CRC32Stream hashValueOf:s] as:Bag)
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    91
                valuesAndCountsSelect:[:h :cnt | cnt > 1]) size
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    92
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    93
        (*) slightly modified to return a 31bit positive number, eg. a SmallInt in 32bit systems.
3ba40f240d45 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23903
diff changeset
    94
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
    95
    [author:]
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    96
        Claus Gittinger
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
    97
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
    98
    [see also:]
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    99
        String TwoByteString Unicode16String Uniode32String
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
   100
        StringCollection
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   101
"
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   102
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   103
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   104
!CharacterArray class methodsFor:'initialization'!
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   105
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   106
initialize
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   107
    DecodingFailedSignal isNil ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   108
        DecodingFailedSignal := DecodingError.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   109
        DecodingFailedSignal notifierString:'error during decode'.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   110
22432
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   111
        EncodingFailedSignal := EncodingError.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   112
        EncodingFailedSignal notifierString:'error during encode'.
5440
ba9207f592c9 only init once
Claus Gittinger <cg@exept.de>
parents: 5352
diff changeset
   113
    ]
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   114
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   115
    "
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   116
     CharacterArray initialize
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   117
    "
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   118
22432
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   119
    "Modified: / 03-08-1997 / 18:15:59 / cg"
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   120
    "Modified (format): / 16-01-2018 / 18:57:10 / stefan"
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   121
! !
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   122
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
   123
!CharacterArray class methodsFor:'instance creation'!
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   124
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   125
basicNew
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   126
    "return a new empty string"
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   127
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   128
    ^ self basicNew:0
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   129
!
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   130
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   131
fromBytes:aByteCollection
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   132
    "return an instance of the receiver class,
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   133
     taking untranslated bytes from the argument, aByteCollection
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   134
     in most-significant first order.
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   135
     Only useful, when reading twoByteStrings from external sources."
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   136
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   137
    ^ self fromBytes:aByteCollection MSB:true
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   138
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   139
    "
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   140
     Unicode16String fromBytes:#[16r02 16r20]
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   141
     Unicode16String fromBytes:#[16r02 16r20] MSB:true
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   142
     Unicode16String fromBytes:#[16r02 16r20] MSB:false
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   143
    "
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   144
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   145
    "Modified: 30.6.1997 / 20:08:37 / cg"
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   146
!
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   147
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   148
fromBytes:aByteCollection MSB:msb
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   149
    "return an instance of the receiver class,
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   150
     taking untranslated bytes from the argument, aByteCollection
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   151
     in the given byte order.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   152
     Only useful, when reading twoByteStrings from external sources."
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
   153
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   154
    |mySize nBytes newString dstIdx|
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   155
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   156
    self assert:(self ~~ CharacterArray). "/ only works for concrete subclasses.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   157
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   158
    "/ the following is a quite inefficient implementation.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   159
    "/ consider rewriting, if heavily used.
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   160
    nBytes := aByteCollection size.
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   161
    mySize := self basicNew bitsPerCharacter.
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   162
    mySize == 16 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   163
        newString := self uninitializedNew:(nBytes // 2).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   164
        dstIdx := 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   165
        msb ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   166
            aByteCollection pairWiseDo:[:hi :lo |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   167
                newString at:dstIdx put:(Character value:(hi bitShift:8)+lo).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   168
                dstIdx := dstIdx + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   169
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   170
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   171
            aByteCollection pairWiseDo:[:lo :hi |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   172
                newString at:dstIdx put:(Character value:(hi bitShift:8)+lo).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   173
                dstIdx := dstIdx + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   174
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   175
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   176
        ^ newString.
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   177
    ].
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   178
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   179
    ^ (self uninitializedNew:nBytes) replaceFrom:1 with:aByteCollection
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   180
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   181
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
   182
     Unicode16String fromBytes:#[16r02 16r20]
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   183
    "
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   184
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   185
    "Modified: 30.6.1997 / 20:08:37 / cg"
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   186
!
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   187
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   188
fromString:aString
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   189
    "return a copy of the argument, aString"
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   190
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   191
    |sz|
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   192
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   193
    sz := aString size.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   194
    ^ (self uninitializedNew:sz) replaceFrom:1 to:sz with:aString startingAt:1
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   195
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   196
    "
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   197
        Unicode16String fromString:'hello'
22233
b74700d567b8 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22231
diff changeset
   198
        String fromString:'hello' asUnicode16String
b74700d567b8 #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 22231
diff changeset
   199
        Unicode16String fromString:'hello' asUnicode16String
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   200
    "
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   201
!
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   202
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   203
fromStringCollection:aCollectionOfStrings
24250
138ffe727169 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24232
diff changeset
   204
    "return a new string formed by concatenating each in aCollectionOfStrings"
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   205
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   206
    ^ self fromStringCollection:aCollectionOfStrings separatedBy:''
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   207
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   208
    "
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   209
     String fromStringCollection:#('hello' 'world' 'how' 'about' 'this')
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   210
    "
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   211
24250
138ffe727169 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24232
diff changeset
   212
    "Created: / 20-11-1995 / 15:26:59 / cg"
138ffe727169 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24232
diff changeset
   213
    "Modified (comment): / 05-06-2019 / 14:28:35 / Claus Gittinger"
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   214
!
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   215
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   216
fromStringCollection:aCollectionOfStrings separatedBy:aSeparatorString
24250
138ffe727169 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24232
diff changeset
   217
    "return a new string formed by concatenating each in aCollectionOfStrings
138ffe727169 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24232
diff changeset
   218
     separating them by aSeparatorString"
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   219
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   220
    |stream|
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   221
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   222
    aCollectionOfStrings do:[:eachString |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   223
        stream isNil ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   224
            stream := self writeStreamClass with:eachString.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   225
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   226
            stream
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   227
                nextPutAll:aSeparatorString;
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   228
                nextPutAll:eachString.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   229
        ].
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   230
    ].
17700
32c288b4487f class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17644
diff changeset
   231
    stream isNil ifTrue:[^ ''].
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   232
    ^ stream contents
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   233
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   234
    "
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   235
     String fromStringCollection:#('hello' 'world' 'how' 'about' 'this') separatedBy:' '
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   236
     String fromStringCollection:#('hello' 'world' 'how' 'about' 'this') separatedBy:'Ƞ'
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   237
     Text fromStringCollection:{'hello'. 'world'. 'how' allBold. 'about'. 'this'. 'äöü'} separatedBy:'Ƞ'
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   238
    "
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   239
24250
138ffe727169 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24232
diff changeset
   240
    "Created: / 20-11-1995 / 15:32:17 / cg"
138ffe727169 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24232
diff changeset
   241
    "Modified (comment): / 05-06-2019 / 14:27:46 / Claus Gittinger"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   242
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   243
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   244
fromUTF8Bytes:aByteCollection
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   245
    <resource: #obsolete>
5758
30e0cc2213ac utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5757
diff changeset
   246
    "return a new string which represents the characters as decoded
30e0cc2213ac utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5757
diff changeset
   247
     from the utf8 encoded bytes, aByteCollection.
30e0cc2213ac utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5757
diff changeset
   248
     Returns either a normal String, or a TwoByteString instance.
6810
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   249
     Only useful, when reading twoByteStrings from external sources.
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   250
     This only handles up-to 16bit characters"
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   251
7876
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   252
    ^ self decodeFromUTF8:aByteCollection.
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   253
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   254
    "Modified (comment): / 07-02-2017 / 17:32:38 / stefan"
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   255
!
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   256
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   257
new
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   258
    "return a new empty string"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   259
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   260
    ^ self basicNew:0
9425
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   261
!
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   262
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   263
readSmalltalkStringFrom:aStreamOrString onError:exceptionBlock
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   264
    "read & return the next String from the (character-)stream aStream;
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   265
     skipping all whitespace first; return the value of exceptionBlock,
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   266
     if no string can be read. The sequence of characters as read from the
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   267
     stream must be one as stored via storeOn: or storeString."
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   268
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   269
    |str collected char|
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   270
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   271
    str := aStreamOrString readStream.
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   272
    "skip whiteSpace"
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   273
    str skipSeparators.
11320
0cf84c372ccf Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11292
diff changeset
   274
14452
ef3591302afa changed: #readSmalltalkStringFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 14451
diff changeset
   275
    (str peekOrNil == $') ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   276
        str next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   277
        collected := self writeStream.
24506
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   278
        [(char := str nextOrNil) notNil] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   279
            char == $' ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   280
                "/ look for another quote
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   281
                str peekOrNil ~~ $' ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   282
                    "end of string reached"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   283
                    ^ collected contents.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   284
                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   285
                "eat doubled quote"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   286
                str next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   287
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   288
            ((char ~~ Character return) or:[str peekOrNil ~~ Character lf]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   289
                "compress CRLF to LF, but keep a single CR"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   290
                collected nextPut:char.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   291
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   292
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   293
        "if we come here, we reached the end without finding a closing $'"
9425
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   294
    ].
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   295
    ^ exceptionBlock value
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   296
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   297
    "
24506
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   298
     String readSmalltalkStringFrom:('''hello world''' readStream) onError:[self halt]
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   299
     String readSmalltalkStringFrom:('''hello '''' world''' readStream) onError:[self halt]
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   300
     String readSmalltalkStringFrom:('1 ''hello'' ' readStream) onError:[self halt]
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   301
     String readSmalltalkStringFrom:('1 ''hello'' ' readStream) onError:['foobar']
9425
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   302
    "
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   303
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   304
    "Created: / 05-07-2006 / 16:41:04 / cg"
10045
bbd328940fb4 care for cr-lf when reading a smalltalk string
Claus Gittinger <cg@exept.de>
parents: 9845
diff changeset
   305
    "Modified: / 06-10-2006 / 14:05:32 / cg"
24506
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   306
    "Modified (comment): / 02-08-2019 / 10:10:46 / Stefan Vogel"
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   307
!
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   308
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   309
readSmalltalkStringWithCRsFrom:aStreamOrString onError:exceptionBlock
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   310
    "read & return the next String from the (character-)stream aStream;
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   311
     skipping all whitespace first; return the value of exceptionBlock,
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   312
     if no string can be read. The sequence of characters as read from the
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   313
     stream must be one as stored via storeOn: or storeString.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   314
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   315
     Different from #readSmalltalStringFrom:onError: we keep CRLF as is."
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   316
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   317
    |str collected char|
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   318
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   319
    str := aStreamOrString readStream.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   320
    "skip whiteSpace"
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   321
    str skipSeparators.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   322
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   323
    (str peekOrNil == $') ifTrue:[
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   324
        str next.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   325
        collected := self writeStream.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   326
        [(char := str nextOrNil) notNil] whileTrue:[
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   327
            char == $' ifTrue:[
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   328
                "/ look for another quote
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   329
                str peekOrNil ~~ $' ifTrue:[
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   330
                    "end of string reached"
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   331
                    ^ collected contents.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   332
                ].
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   333
                "eat doubled quote"
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   334
                str next.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   335
            ].
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   336
            collected nextPut:char.
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   337
        ].
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   338
        "if we come here, we reached the end without finding a closing $'"
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   339
    ].
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   340
    ^ exceptionBlock value
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   341
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   342
    "
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   343
     String readSmalltalkStringWithCRsFrom:('''hello world''' readStream) onError:[self halt]
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   344
     String readSmalltalkStringWithCRsFrom:('''hello '''' world''' readStream) onError:[self halt]
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   345
     String readSmalltalkStringWithCRsFrom:('1 ''hello'' ' readStream) onError:[self halt]
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   346
     String readSmalltalkStringWithCRsFrom:('1 ''hello'' ' readStream) onError:['foobar']
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   347
    "
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   348
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   349
    "Created: / 01-08-2019 / 16:11:25 / Stefan Vogel"
11ffd16e28a4 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24492
diff changeset
   350
    "Modified: / 02-08-2019 / 10:11:06 / Stefan Vogel"
11243
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   351
!
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   352
13201
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   353
writeStreamClass
21145
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   354
    "the type of stream used in writeStream.
17213
1031d5018042 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17205
diff changeset
   355
     Here, we return CharacterWriteStream, which automatically changes
1031d5018042 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17205
diff changeset
   356
     the underlying collection to a multiByte string (i.e. UnicodeString).
1031d5018042 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17205
diff changeset
   357
     So you can stream wide characters into it."
13201
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   358
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   359
    ^ CharacterWriteStream
11243
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   360
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   361
    "
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   362
     String writeStream
21145
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   363
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   364
     - the following delivers a Unicode16String:
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   365
     
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   366
     String streamContents:[:s |
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   367
         s nextPut:(Character value:16r3f30).
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   368
         s nextPutAll:'hello'.
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   369
         s cr.
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   370
     ] 
11243
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   371
    "
13201
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   372
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   373
    "Created: / 09-01-2011 / 10:37:57 / cg"
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   374
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   375
9265
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   376
!CharacterArray class methodsFor:'Compatibility-VW'!
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   377
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   378
fromIntegerArray: anArray
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   379
    "Answer a new instance of the receiver that is created from the argument, anArray."
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   380
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   381
    | new |
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   382
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   383
    new := self new: anArray size.
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   384
    1 to: anArray size do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   385
        new at: index put: (anArray at: index) asCharacter
9265
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   386
    ].
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   387
    ^new
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   388
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   389
    "
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   390
     String fromIntegerArray: #[8 127]
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   391
    "
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   392
! !
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   393
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   394
!CharacterArray class methodsFor:'Signal constants'!
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   395
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   396
decodingFailedSignal
2833
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   397
    "return the signal, raised when decoding of a string is not possible
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   398
     due to invalid characters contained in the source.
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   399
     This may happen for example, if a non EUC coded 8-bit string
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   400
     is attempted to be decoded into a JIS string."
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   401
22432
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   402
    ^ DecodingError
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   403
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   404
    "Created: / 28-06-1997 / 20:09:55 / cg"
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   405
    "Modified: / 03-08-1997 / 18:16:47 / cg"
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   406
    "Modified: / 16-01-2018 / 18:58:10 / stefan"
2833
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   407
!
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   408
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   409
encodingFailedSignal
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   410
    "return the (query-) signal, raised when encoding of a string is not possible
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   411
     due to invalid characters contained in the source."
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   412
22432
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   413
    ^ EncodingError
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   414
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   415
    "Modified: / 28-06-1997 / 20:09:35 / cg"
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   416
    "Created: / 03-08-1997 / 18:16:40 / cg"
1e1cc03e5758 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22406
diff changeset
   417
    "Modified: / 16-01-2018 / 18:59:04 / stefan"
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   418
! !
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   419
25217
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
   420
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
   421
!CharacterArray class methodsFor:'cleanup'!
991
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   422
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   423
lowSpaceCleanup
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   424
    "cleanup in low-memory situations"
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   425
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   426
    DecoderTables := EncoderTables := nil
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   427
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   428
    "
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   429
     CharacterArray lowSpaceCleanup
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   430
    "
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   431
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   432
    "Created: 22.2.1996 / 16:30:30 / cg"
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   433
    "Modified: 22.2.1996 / 17:58:05 / cg"
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   434
! !
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   435
7421
4e6c6edb90d9 category rename
Claus Gittinger <cg@exept.de>
parents: 7349
diff changeset
   436
!CharacterArray class methodsFor:'encoding & decoding'!
1202
200f7cd0a457 moved encode/decode stuff into class methods / added big5/gb support
Claus Gittinger <cg@exept.de>
parents: 1145
diff changeset
   437
7876
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   438
decodeFromUTF8:aStringOrByteCollection
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   439
    "given a string in UTF8 encoding,
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   440
     return a new string containing the same characters, in Unicode encoding.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   441
     Returns either a normal String, a Unicode16String or a Unicode32String instance.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   442
     This is only useful, when reading from external sources or communicating with
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   443
     other systems 
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   444
     (ST/X never uses utf8 internally, but always uses strings of fully decoded unicode characters).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   445
     This only handles up-to 30bit characters."
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   446
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   447
    |decodedSize nBitsRequired
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   448
     codepoint "{ Class: SmallInteger }"
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   449
     byte  "{ Class: SmallInteger }"
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   450
     encodedSize  "{ Class: SmallInteger }"
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   451
     srcIdx  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   452
     idx  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   453
     nFollowBytes  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   454
     minValue "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   455
     newString|
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   456
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   457
    encodedSize := aStringOrByteCollection size.
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   458
    decodedSize := aStringOrByteCollection utf8DecodedSize.
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   459
    
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   460
    encodedSize == decodedSize ifTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   461
        "/ fast track, also avoid creation of new strings if aStringOrByteCollection is already a 7-bit string
23400
d931839b8ce0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23392
diff changeset
   462
        ^ aStringOrByteCollection asSingleByteStringIfPossible
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   463
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   464
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   465
    nBitsRequired := 8.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   466
    srcIdx := 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   467
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   468
    "this loop is only used to find the largest character"
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   469
    [srcIdx <= encodedSize] whileTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   470
        byte := aStringOrByteCollection byteAt:srcIdx. 
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   471
        srcIdx := srcIdx + 1.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   472
        byte > 16r7F ifTrue:[
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   473
            (byte bitAnd:2r11100000) == 2r11000000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   474
                "/ 80 .. 7FF
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   475
                nBitsRequired < 16 ifTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   476
                    codepoint := ((byte bitAnd:2r00011111) bitShift:6)
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   477
                               + ((aStringOrByteCollection byteAt:srcIdx) bitAnd:2r00111111).
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   478
                    codepoint > 16rFF ifTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   479
                        nBitsRequired := 16.
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   480
                    ].
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   481
                ].
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   482
                srcIdx := srcIdx + 1.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   483
            ] ifFalse:[(byte bitAnd:2r11110000) == 2r11100000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   484
                "/ 800 .. FFFF
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   485
                srcIdx := srcIdx + 2.
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   486
                nBitsRequired < 16 ifTrue:[nBitsRequired := 16].
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   487
            ] ifFalse:[(byte bitAnd:2r11111000) == 2r11110000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   488
                "/ 10000 .. 1FFFFF
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   489
                srcIdx := srcIdx + 3.
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   490
                nBitsRequired := 32.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   491
            ] ifFalse:[(byte bitAnd:2r11111100) == 2r11111000 ifTrue:[
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   492
                "5 byte sequences do not result in valid unicode"
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   493
                "/ 200000 .. 3FFFFFF
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   494
                srcIdx := srcIdx + 4.
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   495
                nBitsRequired := 32.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   496
            ] ifFalse:[(byte bitAnd:2r11111110) == 2r11111100 ifTrue:[
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   497
                "6 byte sequences do not result in valid unicode"
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   498
                "/ 4000000 .. 7FFFFFFF
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   499
                (byte bitAnd:2r00000001) ~~ 0 ifTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   500
                    "/ ST/X can only represent up to 30 bit characters.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   501
                    "/ but the max unicode character is defined as 16r10 FFFF anyway
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   502
                    ^ DecodingError newException
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   503
                           defaultValue:aStringOrByteCollection;
21145
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   504
                           raiseRequestWith:aStringOrByteCollection 
4ebaf5e2ecbb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21128
diff changeset
   505
                           errorString:('unicode character out of range at: %1' bindWith:srcIdx).
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   506
                ].
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   507
                srcIdx := srcIdx + 5.
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   508
                nBitsRequired := 32.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   509
            ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   510
                ^ DecodingError newException
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   511
                       defaultValue:aStringOrByteCollection;
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   512
                       raiseRequestWith:aStringOrByteCollection errorString:'invalid utf8 encoding'.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   513
            ]]]]].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   514
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   515
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   516
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   517
    nBitsRequired == 8 ifTrue:[
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   518
        newString := String uninitializedNew:decodedSize
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   519
    ] ifFalse:[nBitsRequired == 16 ifTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   520
        newString := Unicode16String new:decodedSize
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   521
    ] ifFalse:[
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   522
        newString := Unicode32String new:decodedSize
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   523
    ]].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   524
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   525
    idx := srcIdx := 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   526
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   527
    "now fill the string"
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   528
    [srcIdx <= encodedSize] whileTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   529
        byte := codepoint := aStringOrByteCollection byteAt:srcIdx.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   530
        srcIdx := srcIdx + 1.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   531
        byte > 16r7F ifTrue:[
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   532
            (byte bitAnd:2r11100000) == 2r11000000 ifTrue:[
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   533
                codepoint := byte bitAnd:2r00011111.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   534
                nFollowBytes := 1.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   535
                minValue := 16r80.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   536
            ] ifFalse:[(byte bitAnd:2r11110000) == 2r11100000 ifTrue:[
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   537
                codepoint := byte bitAnd:2r00001111.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   538
                nFollowBytes := 2.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   539
                minValue := 16r800.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   540
            ] ifFalse:[(byte bitAnd:2r11111000) == 2r11110000 ifTrue:[
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   541
                codepoint := byte bitAnd:2r00000111.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   542
                nFollowBytes := 3.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   543
                minValue := 16r10000.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   544
            ] ifFalse:[(byte bitAnd:2r11111100) == 2r11111000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   545
                "5 byte sequences do not result in valid unicode"
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   546
                codepoint := byte bitAnd:2r00000011.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   547
                nFollowBytes := 4.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   548
                minValue := 16r200000.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   549
            ] ifFalse:[(byte bitAnd:2r11111110) == 2r11111100 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   550
                "6 byte sequences do not result in valid unicode"
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   551
                codepoint := byte bitAnd:2r00000001.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   552
                nFollowBytes := 5.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   553
                minValue := 16r4000000.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   554
            ]]]]].
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   555
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   556
            nFollowBytes timesRepeat:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   557
                byte := aStringOrByteCollection byteAt:srcIdx.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   558
                (byte bitAnd:2r11000000) ~~ 2r10000000 ifTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   559
                    ^ DecodingError newException
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   560
                           defaultValue:aStringOrByteCollection;
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   561
                           raiseRequestWith:aStringOrByteCollection 
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   562
                           errorString:('illegal followbyte (expect 0x80): 0x%1 at:%2' bindWith:(byte hexPrintString:2) with:srcIdx).
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   563
                ].
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   564
                srcIdx := srcIdx + 1.
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   565
                codepoint := (codepoint bitShift:6) bitOr:(byte bitAnd:2r00111111). 
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   566
            ].
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   567
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   568
            codepoint < minValue ifTrue:[
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   569
                "encoding a value in a longer utf8-sequence than required is not allowed
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   570
                 and imposes a security risk. Proceed to continue with decoding."
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   571
                DecodingError newException
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   572
                       defaultValue:aStringOrByteCollection;
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   573
                       raiseRequestWith:aStringOrByteCollection errorString:'overlong utf8 sequence'.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   574
            ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   575
        ].
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   576
        newString at:idx put:(Character value:codepoint).
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   577
        idx := idx + 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   578
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   579
    ^ newString
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   580
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   581
    "
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   582
     CharacterArray decodeFromUTF8:#[ 16r41 16r42 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   583
     CharacterArray decodeFromUTF8:#[ 16rC6 16r8F ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   584
     CharacterArray decodeFromUTF8:#[ 16rEF 16rBF 16rBF ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   585
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   586
   rfc3629 examples:
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   587
     CharacterArray decodeFromUTF8:#[ 16r41 16rE2 16r89 16rA2 16rCE 16r91 16r2E ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   588
     CharacterArray decodeFromUTF8:#[ 16rED 16r95 16r9C 16rEA 16rB5 16rAD 16rEC 16r96 16rB4 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   589
     CharacterArray decodeFromUTF8:#[ 16rE6 16r97 16rA5 16rE6 16r9C 16rAC 16rE8 16rAA 16r9E ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   590
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   591
   invalid:
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   592
     CharacterArray decodeFromUTF8:#[ 16rC0 16r80 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   593
     CharacterArray decodeFromUTF8:#[ 16rE0 16r80 16r80 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   594
     CharacterArray decodeFromUTF8:#[ 16rE0 16r81 16r02 ]
21379
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   595
    "
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   596
c1a1414e4994 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21352
diff changeset
   597
    "Modified: / 07-02-2017 / 17:41:17 / stefan"
23400
d931839b8ce0 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23392
diff changeset
   598
    "Modified: / 04-10-2018 / 13:29:53 / Claus Gittinger"
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   599
!
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   600
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   601
setupNormalizationMaps
20864
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   602
    "returns a 2-stage map from ch2 -> ch1 -> mappedChar.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   603
     for unicode normalization 
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   604
     (i.e. for replacing combining char-sequences with regular characters).
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   605
     ch2 is the combining charCode (eg. 0x0308), ch1 is the previous character (eg. $A),
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   606
     mappedChar is the result (eg. $Ä).
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   607
     Caveat: 
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   608
        possibly incomplete: only COMBINING_DIACRITICAL_MARKS are cared for.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   609
        Does not care for COMBINING_DIACRITICAL_MARKS_EXTENDED
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   610
        and COMBINING_DIACRITICAL_MARKS_SUPPLEMENT.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   611
        However; those are used for German dialectology, ancient Greek and other similar
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   612
        exotic uses. Probably noone will ever even notice that they are missing..."
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   613
     
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   614
    |def|
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   615
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   616
    UnicodeNormalizationMap := Dictionary new.
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   617
    UnicodeDenormalizationMap := Dictionary new.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   618
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   619
    def := [:combiner :chars :mappedChars |
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   620
               |d|
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   621
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   622
               d := UnicodeNormalizationMap at:combiner ifAbsentPut:[Dictionary new].
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   623
               chars with:mappedChars do:[:ch1 :mappedChar | 
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   624
                    d at:ch1 put:mappedChar.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   625
                    UnicodeDenormalizationMap at:mappedChar put:(Unicode16String with:ch1 with:combiner).
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   626
               ].
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   627
           ].        
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   628
    def value:(Character codePoint:16r0300) "grave"         value:'AEIOUaeiouWw' value:'ÀÈÌÒÙàèìòùẀẁ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   629
    def value:(Character codePoint:16r0301) "acute"         value:'AEIOUYaeiouyÇçKkMmPpWw' value:'ÁÉÍÓÚÝáéíóúýḈḉḰḱḾḿṔṕẂẃ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   630
    def value:(Character codePoint:16r0302) "circumflex"    value:'AEIOUaeiouZz' value:'ÂÊÎÔÛâêîôûẐẑ'.
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   631
    def value:(Character codePoint:16r0303) "tilde"         value:'AONaon' value:'ÃÕÑãõñ'.
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   632
    def value:(Character codePoint:16r0307) "dot over"      value:'BbDdFfHhMmNnPpRrSsTtWwXxYyṢṣ' value:'ḂḃḊḋḞḟḢḣṀṁṄṅṖṗṘṙṠṡṪṫẆẇẊẋẎẏṨṩ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   633
    def value:(Character codePoint:16r0308) "diaresis"      value:'AEIOUaeiouyHhWwXxt' value:'ÄËÏÖÜäëïöüÿḦḧẄẅẌẍẗ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   634
    def value:(Character codePoint:16r030A) "ring"          value:'Aawy' value:'Ååẘẙ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   635
    def value:(Character codePoint:16r0323) "dot under"     value:'AaBbDdEeIiHhKkLlMmNnOoRrSsTtUuVvWwZzṠṡ' value:'ẠạḄḅḌḍẸẹỊịḤḥḲḳḶḷṂṃṆṇỌọṚṛṢṣṬṭỤụṾṿẈẉẒẓṨṩ'.
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   636
    def value:(Character codePoint:16r0327) "cedilla"       value:'Cc' value:'Çç'.
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   637
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   638
    "
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   639
     self setupNormalizationMaps
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   640
    "
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   641
!
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   642
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   643
unicodeDenormalizationMap
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   644
    "returns a 2-stage map from ch2 -> ch1 -> mappedChar
20864
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   645
     for unicode normalization (i.e. for making combining chars regular ones).
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   646
     Caveat: 
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   647
        possibly incomplete: only COMBINING_DIACRITICAL_MARKS are cared for.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   648
        Does not care for COMBINING_DIACRITICAL_MARKS_EXTENDED
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   649
        and COMBINING_DIACRITICAL_MARKS_SUPPLEMENT.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   650
        However; those are used for German dialectology, ancient Greek and other similar
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   651
        exotic uses. Probably noone will ever even notice that they are missing..."
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   652
     
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   653
    UnicodeDenormalizationMap isNil ifTrue:[
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   654
        self setupNormalizationMaps
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   655
    ].
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   656
    ^ UnicodeDenormalizationMap
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   657
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   658
    "
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   659
     self unicodeDenormalizationMap
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   660
    "
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   661
!
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   662
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   663
unicodeNormalizationMap
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   664
    "returns a 2-stage map from ch2 -> ch1 -> mappedChar
20864
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   665
     for unicode normalization (i.e. for making combining chars regular ones).
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   666
     Caveat: 
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   667
        possibly incomplete: only COMBINING_DIACRITICAL_MARKS are cared for.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   668
        Does not care for COMBINING_DIACRITICAL_MARKS_EXTENDED
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   669
        and COMBINING_DIACRITICAL_MARKS_SUPPLEMENT.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   670
        However; those are used for German dialectology, ancient Greek and other similar
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
   671
        exotic uses. Probably noone will ever even notice that they are missing..."
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   672
     
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   673
    UnicodeNormalizationMap isNil ifTrue:[
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   674
        self setupNormalizationMaps
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   675
    ].
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   676
    ^ UnicodeNormalizationMap
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   677
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   678
    "
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   679
     self unicodeNormalizationMap
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   680
    "
443
Claus Gittinger <cg@exept.de>
parents: 428
diff changeset
   681
! !
Claus Gittinger <cg@exept.de>
parents: 428
diff changeset
   682
25204
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
   683
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
   684
!CharacterArray class methodsFor:'pattern matching'!
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   685
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   686
matchEscapeCharacter
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   687
    "return the character used to escape a matchCharacter
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   688
     (i.e. make it a regular character in a matchPattern)"
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   689
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   690
    ^ $\
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   691
!
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   692
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   693
matchScan:matchScanArray from:matchStart to:matchStop with:aString from:start to:stop caseSensitive:caseSensitive
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   694
    "helper for match; return true if the characters from start to stop in
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   695
     aString are matching the scan in matchScan from matchStart to matchStop.
328
claus
parents: 327
diff changeset
   696
     The matchScan is as created by asMatchScanArray.
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   697
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   698
     This algorithm is not at all the most efficient;
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   699
     for heavy duty pattern matching, an interface (primitive) to the regex
328
claus
parents: 327
diff changeset
   700
     pattern matching package should be added."
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   701
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   702
    |matchEntry
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   703
     mStart "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   704
     mStop  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   705
     sStart "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   706
     sStop  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   707
     mSize  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   708
     sSize  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   709
     index  "{ Class: SmallInteger }"
2561
205ee33decf9 removed unused var
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
   710
     quickCheck matchLast nextMatchEntry
986
c3a9f590146d removed unused locals
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
   711
     checkChar included|
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   712
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   713
    mStart := matchStart.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   714
    mStop := matchStop.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   715
    sStart := start.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   716
    sStop := stop.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   717
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
   718
    [
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   719
"/ Transcript showCR:('match: ''' , (aString copyFrom:sStart to:sStop) ,
3537
916534e86f0c fixed match
Claus Gittinger <cg@exept.de>
parents: 3527
diff changeset
   720
"/                    ''' against:' , (matchScanArray copyFrom:mStart to:mStop) printString).
916534e86f0c fixed match
Claus Gittinger <cg@exept.de>
parents: 3527
diff changeset
   721
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   722
        mSize := mStop - mStart + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   723
        sSize := sStop - sStart + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   724
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   725
        "empty strings match"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   726
        (mSize == 0) ifTrue:[^ (sSize == 0)].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   727
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   728
        matchEntry := matchScanArray at:mStart.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   729
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   730
        "/ the most common case first:
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   731
        (sSize ~~ 0
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   732
        and:[(checkChar := (aString at:sStart)) = matchEntry]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   733
            "advance by one and continue"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   734
            mStart := mStart + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   735
            sStart := sStart + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   736
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   737
            (matchEntry == #any) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   738
                "restString empty -> no match"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   739
                (sSize == 0) ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   740
                "# matches single character"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   741
                ((sSize == 1) and:[mSize == 1]) ifTrue:[^ true].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   742
                "advance by one and continue"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   743
                mStart := mStart + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   744
                sStart := sStart + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   745
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   746
                (matchEntry == #anyString) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   747
                    "* alone matches anything"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   748
                    (mSize == 1) ifTrue:[^ true].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   749
                    "restString empty & matchString not empty -> no match"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   750
                    (sSize == 0) ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   751
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   752
                    "
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   753
                     try to avoid some of the recursion by checking last
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   754
                     character and continue with shortened strings if possible
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   755
                    "
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   756
                    quickCheck := false.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   757
                    (mStop >= mStart) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   758
                        matchLast := matchScanArray at:mStop.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   759
                        (matchLast ~~ #anyString) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   760
                            (matchLast == #any) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   761
                                quickCheck := true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   762
                            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   763
                                matchLast == (aString at:sStop) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   764
                                    quickCheck := true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   765
                                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   766
                                    matchLast isString ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   767
                                        quickCheck := matchLast includes:(aString at:sStop)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   768
                                    ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   769
                                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   770
                            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   771
                        ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   772
                    ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   773
                    quickCheck ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   774
                        "
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   775
                         quickCheck ok, advance from the right
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   776
                        "
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   777
                        mStop := mStop - 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   778
                        sStop := sStop - 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   779
                    ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   780
                        "/ no quick check;
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   781
                        "/ look for the next character(s)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   782
                        "/ and try matching there
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   783
                        "/ (to avoid recursion)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   784
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   785
                        mStart < mStop ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   786
                            nextMatchEntry := matchScanArray at:mStart+1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   787
                            nextMatchEntry isCharacter ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   788
                                sStart <= sStop ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   789
                                    [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   790
                                        caseSensitive ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   791
                                            index := aString indexOf:nextMatchEntry startingAt:sStart
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   792
                                        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   793
                                            index := aString findFirst:[:c | c asLowercase = nextMatchEntry asLowercase]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   794
                                                             startingAt:sStart.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   795
                                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   796
                                        (index == 0 or:[index > sStop]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   797
                                            ^ false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   798
                                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   799
                                        (self matchScan:matchScanArray
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   800
                                              from:(mStart + 1)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   801
                                              to:mStop
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   802
                                              with:aString
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   803
                                              from:index
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   804
                                              to:sStop
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   805
                                              caseSensitive:caseSensitive
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   806
                                        ) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   807
                                            ^ true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   808
                                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   809
                                        sStart := index + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   810
                                    ] loop.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   811
                                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   812
                            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   813
                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   814
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   815
                        "
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   816
                         no quick check possible;
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   817
                         loop over all possible substrings
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   818
                        "
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   819
                        index := sStart.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   820
                        [index <= sStop] whileTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   821
                            (self matchScan:matchScanArray
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   822
                                  from:(mStart + 1)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   823
                                  to:mStop
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   824
                                  with:aString
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   825
                                  from:index
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   826
                                  to:sStop
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   827
                                  caseSensitive:caseSensitive
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   828
                            ) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   829
                                ^ true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   830
                            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   831
                            index := index + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   832
                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   833
                        ^ false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   834
                    ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   835
                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   836
                    (matchEntry isString) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   837
                        "testString empty -> no match"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   838
                        (sSize == 0) ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   839
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   840
                        included := false.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   841
                        "/ checkChar := aString at:sStart.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   842
                        included := matchEntry includes:checkChar.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   843
                        included ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   844
                            caseSensitive ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   845
                                checkChar isUppercase ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   846
                                    included := matchEntry includes:checkChar asLowercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   847
                                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   848
                                    included := matchEntry includes:checkChar asUppercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   849
                                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   850
                            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   851
                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   852
                        mStart := mStart + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   853
                        mSize := mSize - 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   854
                        included ifFalse:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   855
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   856
                        ((sSize == 1) and:[mSize == 0]) ifTrue:[^ true].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   857
                    ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   858
                        "/ must be single character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   859
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   860
                        "testString empty ?"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   861
                        (sSize == 0) ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   862
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   863
                        "first characters equal ?"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   864
                        "/ checkChar := aString at:sStart.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   865
                        caseSensitive ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   866
                        (checkChar asUppercase ~= matchEntry asUppercase) ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   867
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   868
                        "advance and continue"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   869
                        mStart := mStart + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   870
                    ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   871
                    "cut off 1st char and continue"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   872
                    sStart := sStart + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   873
                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   874
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   875
        ]
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
   876
    ] loop.
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   877
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   878
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   879
     |scanArray s|
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   880
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   881
     scanArray := self matchScanArrayFrom:'*hello'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   882
     s := 'foo bar hello world'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   883
     CharacterArray
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   884
         matchScan:scanArray
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   885
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   886
         to:scanArray size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   887
         with:s
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   888
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   889
         to:s size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   890
         caseSensitive:true
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   891
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   892
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   893
     |scanArray s|
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   894
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   895
     scanArray := self matchScanArrayFrom:'*hello*'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   896
     s := 'foo bar hello world'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   897
     CharacterArray
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   898
         matchScan:scanArray
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   899
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   900
         to:scanArray size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   901
         with:s
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   902
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   903
         to:s size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   904
         caseSensitive:true
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   905
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   906
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   907
    "Modified: / 24-07-2011 / 07:17:03 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   908
    "Modified (comment): / 24-07-2011 / 08:55:14 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   909
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   910
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   911
matchScan:matchScanArray from:matchStart to:matchStop with:aString from:start to:stop ignoreCase:ignoreCase
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   912
    <resource: #obsolete>
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   913
    "helper for match; return true if the characters from start to stop in
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   914
     aString are matching the scan in matchScan from matchStart to matchStop.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   915
     The matchScan is as created by asMatchScanArray.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   916
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   917
     This algorithm is not at all the most efficient;
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   918
     for heavy duty pattern matching, an interface (primitive) to the regex
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   919
     pattern matching package should be added."
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   920
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   921
    ^ self
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   922
        matchScan:matchScanArray from:matchStart to:matchStop with:aString from:start to:stop caseSensitive:ignoreCase not
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   923
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   924
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   925
     |scanArray s|
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   926
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   927
     scanArray := self matchScanArrayFrom:'*hello'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   928
     s := 'foo bar hello world'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   929
     CharacterArray
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   930
         matchScan:scanArray
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   931
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   932
         to:scanArray size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   933
         with:s
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   934
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   935
         to:s size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   936
         ignoreCase:false
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   937
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   938
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   939
     |scanArray s|
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   940
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   941
     scanArray := self matchScanArrayFrom:'*hello*'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   942
     s := 'foo bar hello world'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   943
     CharacterArray
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   944
         matchScan:scanArray
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   945
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   946
         to:scanArray size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   947
         with:s
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   948
         from:1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   949
         to:s size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   950
         ignoreCase:false
13520
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   951
    "
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   952
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   953
    "Modified: / 24-07-2011 / 07:17:03 / cg"
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   954
    "Modified (comment): / 24-07-2011 / 08:55:14 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   955
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   956
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   957
matchScanArrayFrom:aString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   958
    "scan a pattern string and decompose it into a scanArray.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   959
     This is processed faster (especially with character ranges), and
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   960
     can also be reused later. (if the same pattern is to be searched again)"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   961
9282
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   962
    ^ self matchScanArrayFrom:aString escapeCharacter:(self matchEscapeCharacter)
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   963
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   964
    "
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   965
     String matchScanArrayFrom:'*ute*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   966
     String matchScanArrayFrom:'**ute**'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   967
     String matchScanArrayFrom:'*uter'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   968
     String matchScanArrayFrom:'\*uter'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   969
     String matchScanArrayFrom:'[cC]#mpute[rR]'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   970
     String matchScanArrayFrom:'[abcd]*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   971
     String matchScanArrayFrom:'[a-k]*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   972
     String matchScanArrayFrom:'*some*compl*ern*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   973
     String matchScanArrayFrom:'[a-'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   974
     String matchScanArrayFrom:'[a-zA-Z]'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   975
     String matchScanArrayFrom:'[a-z01234A-Z]'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   976
    "
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   977
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   978
    "Modified: 2.4.1997 / 16:20:29 / cg"
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   979
!
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   980
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   981
matchScanArrayFrom:aString escapeCharacter:escape
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   982
    "scan a pattern string and decompose it into a scanArray.
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   983
     This is processed faster (especially with character ranges), and
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   984
     can also be reused later. (if the same pattern is to be searched again)"
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   985
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   986
    |coll
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   987
     idx "{ Class: SmallInteger }"
9282
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   988
     end c1 c2 matchSet previous|
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   989
5487
cb4c5ae75c63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
   990
    previous := nil.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   991
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   992
    coll := OrderedCollection new.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   993
    idx := 1. end := aString size.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   994
    [idx <= end] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   995
        |char this|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   996
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   997
        char := aString at:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   998
        char == $* ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
   999
            previous ~~ #anyString ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1000
                this := #anyString
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1001
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1002
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1003
            char == $# ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1004
                previous ~~ #anyString ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1005
                    this := #any
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1006
                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1007
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1008
                char == $[ ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1009
                    matchSet := IdentitySet new.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1010
                    idx := idx + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1011
                    idx > end ifTrue:[^ nil].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1012
                    char := aString at:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1013
                    c1 := nil.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1014
                    [char ~~ $]] whileTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1015
                        ((char == $-) and:[c1 notNil]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1016
                            idx := idx + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1017
                            idx > end ifTrue:[^ nil].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1018
                            c2 := aString at:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1019
                            c1 to:c2 do:[:c | matchSet add:c].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1020
                            c1 := nil.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1021
                            idx := idx + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1022
                        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1023
                            (char ~~ $]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1024
                                matchSet add:char.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1025
                                c1 := char.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1026
                                idx := idx + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1027
                            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1028
                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1029
                        idx > end ifTrue:[^ nil].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1030
                        char := aString at:idx
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1031
                    ].
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  1032
                    this := matchSet asString sort.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1033
                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1034
                    char == escape ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1035
                        idx := idx + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1036
                        idx > end ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1037
                            "/ mhmh - what should we do here ?
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1038
                            this := char
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1039
                        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1040
                            this := aString at:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1041
                        ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1042
                    ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1043
                        this := char
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1044
                    ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1045
                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1046
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1047
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1048
        this notNil ifTrue:[coll add:this. previous := this].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1049
        idx := idx + 1
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1050
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1051
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1052
    ^ coll asArray
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1053
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1054
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1055
     String matchScanArrayFrom:'*ute*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1056
     String matchScanArrayFrom:'**ute**'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1057
     String matchScanArrayFrom:'*uter'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1058
     String matchScanArrayFrom:'\*uter'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1059
     String matchScanArrayFrom:'[cC]#mpute[rR]'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1060
     String matchScanArrayFrom:'[abcd]*'
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  1061
     String matchScanArrayFrom:'[abcdŴĂĂ]*'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1062
     String matchScanArrayFrom:'[a-k]*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1063
     String matchScanArrayFrom:'*some*compl*ern*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1064
     String matchScanArrayFrom:'[a-'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1065
     String matchScanArrayFrom:'[a-zA-Z]'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1066
     String matchScanArrayFrom:'[a-z01234A-Z]'
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1067
    "
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  1068
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  1069
    "Modified: / 02-04-1997 / 16:20:29 / cg"
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  1070
    "Modified: / 03-12-2018 / 15:41:54 / Stefan Vogel"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1071
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1072
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1073
!CharacterArray class methodsFor:'queries'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1074
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1075
isAbstract
11229
4fa83d5e806d comment
Claus Gittinger <cg@exept.de>
parents: 11179
diff changeset
  1076
    "Return if this class is an abstract class.
4fa83d5e806d comment
Claus Gittinger <cg@exept.de>
parents: 11179
diff changeset
  1077
     True is returned for CharacterArray here; false for subclasses.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  1078
     Abstract subclasses must redefine this again."
11229
4fa83d5e806d comment
Claus Gittinger <cg@exept.de>
parents: 11179
diff changeset
  1079
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1080
    ^ self == CharacterArray
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1081
!
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1082
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1083
speciesForCharacterSize:characterSize
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1084
    "answer the class, that is able to hold characters of size characterSize"
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1085
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1086
    characterSize <= 8 ifTrue:[^ String].
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1087
    characterSize <= 16 ifTrue:[^ Unicode16String].
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1088
    ^ Unicode32String
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1089
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1090
25204
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  1091
22525
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1092
!CharacterArray class methodsFor:'utilities'!
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1093
23983
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1094
through:aCharacter in:inStream 
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1095
    "read all characters through aCharacter and return a
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1096
     dense strings for it (i.e. String/TwoByteString, if possible).
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1097
     This helper is present because when reading from a unicode32 stream,
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1098
     dense strings are preferred.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1099
     If inStream is known to return single byte characters,
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1100
     you should better use inStream through:aCharacter"
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1101
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1102
    |answerStream char|
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1103
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1104
    answerStream := CharacterWriteStream new:20.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1105
    [inStream atEnd] whileFalse:[
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1106
        char := inStream next.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1107
        answerStream nextPut:char.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1108
        (aCharacter == char) ifTrue:[
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1109
            ^ answerStream contents
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1110
        ].
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1111
    ].
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1112
    ^ answerStream contents
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1113
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1114
    "Created: / 27-03-2019 / 13:42:00 / Claus Gittinger"
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1115
!
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1116
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1117
throughAny:aCollection in:inStream 
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1118
    "read all characters through any in aCollection and return a
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1119
     dense strings for it (i.e. String/TwoByteString, if possible).
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1120
     This helper is present because when reading from a unicode32 stream,
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1121
     dense strings are preferred.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1122
     If inStream is known to return single byte characters,
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1123
     you should better use inStream throughAny:aCollection"
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1124
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1125
    |answerStream char|
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1126
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1127
    answerStream := CharacterWriteStream new:20.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1128
    [inStream atEnd] whileFalse:[
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1129
        char := inStream next.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1130
        answerStream nextPut:char.
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1131
        (aCollection includes:char) ifTrue:[
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1132
            ^ answerStream contents
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1133
        ].
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1134
    ].
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1135
    ^ answerStream contents
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1136
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1137
    "Created: / 27-03-2019 / 13:40:49 / Claus Gittinger"
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1138
!
6eee4e0eeeea #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23973
diff changeset
  1139
22525
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1140
withoutAmpersandEscapes:label
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1141
    "remove single ampersands;
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1142
     replace double ampersands by single ones.
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1143
     This is used to unescape menu-labels 
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1144
     (which use the ampersand as shortKey marker)"
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1145
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1146
    ^ String 
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1147
        streamContents:[:out |
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1148
            |in ch next|
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1149
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1150
            in := label readStream.
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1151
            [in atEnd] whileFalse:[
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1152
                ch := in next.
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1153
                ch == $& ifTrue:[
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1154
                    (next := in peek) == $& ifTrue:[
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1155
                        in next.
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1156
                        out nextPut:ch
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1157
                    ] ifFalse:[
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1158
                        ch := next
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1159
                    ].
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1160
                ] ifFalse:[
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1161
                    out nextPut:ch
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1162
                ].
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1163
            ]
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1164
        ]
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1165
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1166
    "
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1167
     String withoutAmpersandEscapes:''
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1168
     String withoutAmpersandEscapes:'a'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1169
     String withoutAmpersandEscapes:'abcd'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1170
     String withoutAmpersandEscapes:'&abcd'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1171
     String withoutAmpersandEscapes:'&abcd&'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1172
     String withoutAmpersandEscapes:'&a&b&c&d'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1173
     String withoutAmpersandEscapes:'&a&b&c&d&'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1174
     String withoutAmpersandEscapes:'&&a&&b&&c&&d&&'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1175
     String withoutAmpersandEscapes:'&&a&&b&&c&&d&'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1176
     String withoutAmpersandEscapes:'&a&&b&&c&&d&'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1177
     String withoutAmpersandEscapes:'a&&b&&c&&d'
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1178
    "
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1179
! !
ea97c9efdaed #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22451
diff changeset
  1180
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1181
!CharacterArray methodsFor:'Compatibility-ANSI'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1182
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1183
addLineDelimiters
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1184
    "Ansi compatibility - same as withCRs"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1185
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1186
    ^ self withCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1187
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1188
    "Modified: / 13.11.2001 / 19:16:25 / cg"
17543
bb01d670ad82 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17517
diff changeset
  1189
! !
bb01d670ad82 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17517
diff changeset
  1190
bb01d670ad82 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17517
diff changeset
  1191
!CharacterArray methodsFor:'Compatibility-Dolphin'!
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1193
copyExpanding:expandTable
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1194
    "return a copy of myself, with translations from the expandTable sliced in.
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1195
     The argument is supposed to map from characters to either characters or strings.
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1196
     Added for Dolphin compatibility"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1197
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1198
    |ds|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1199
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1200
    ds := WriteStream on:(self species new).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1201
    self do:[:eachChar |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1202
        |repl|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1203
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1204
        repl := expandTable at:eachChar ifAbsent:[nil].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1205
        repl isNil ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1206
            ds nextPut:eachChar
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1207
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1208
            repl size == 0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1209
                ds nextPut:repl
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1210
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1211
                ds nextPutAll:repl
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1212
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1213
        ].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1214
    ].
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1215
    ^ ds contents.
24036
da0528442261 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24034
diff changeset
  1216
da0528442261 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24034
diff changeset
  1217
    "
da0528442261 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24034
diff changeset
  1218
     'hello' copyExpanding:(Dictionary withKeys:{$h . $e . $o} andValues:{'HH' . 'EE' . $O })
da0528442261 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24034
diff changeset
  1219
    "
da0528442261 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24034
diff changeset
  1220
da0528442261 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24034
diff changeset
  1221
    "Modified (format): / 02-04-2019 / 10:59:59 / Claus Gittinger"
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1222
!
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1223
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1224
formatWith:aString
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  1225
    "Compatibility method - do not use in new code.
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1226
     same as #bindWith: for Dolphin compatibility"
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1227
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1228
    ^ self bindWith:aString
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1229
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1230
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1231
     'hello%1world' formatWith:'123'
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1232
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1233
!
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1234
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1235
formatWith:arg1 with:arg2
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  1236
    "Compatibility method - do not use in new code.
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1237
     same as #bindWith: for Dolphin compatibility"
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1238
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1239
    ^ self bindWith:arg1 with:arg2
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1240
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1241
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1242
     'hello%1 %2world' formatWith:'123' with:234
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1243
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1244
!
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1245
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1246
formatWith:arg1 with:arg2 with:arg3
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  1247
    "Compatibility method - do not use in new code.
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1248
     same as #bindWith: for Dolphin compatibility"
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1249
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1250
    ^ self bindWith:arg1 with:arg2 with:arg3
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1251
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1252
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1253
     'hello%1 %2 %3world' formatWith:'123' with:234 with:345
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1254
    "
6391
ff9f6df9ec4e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6228
diff changeset
  1255
! !
ff9f6df9ec4e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6228
diff changeset
  1256
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1257
!CharacterArray methodsFor:'Compatibility-GNU'!
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1258
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1259
% anArrayOfOperands
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1260
    "return a copy of the receiver, where a '%i' escape
21747
ee2cfb32702a #OTHER by mawalch
mawalch
parents: 21745
diff changeset
  1261
     is replaced by the corresponding string from the argument array.
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1262
     'i' may be between 1 and 9 (i.e. a maximum of 9 placeholders is allowed).
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1263
     Added for GNU-ST compatibility."
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1264
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1265
    ^ self expandPlaceholdersWith:anArrayOfOperands
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1266
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1267
    "
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1268
     'do you prefer %1 or rather %2 (not talking about %3) ?'
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1269
        % #('smalltalk' 'c++' 'c')
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1270
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1271
     'do you %(what) ?'
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1272
        % (Dictionary new at:#'what' put:'understand'; yourself)
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1273
    "
21747
ee2cfb32702a #OTHER by mawalch
mawalch
parents: 21745
diff changeset
  1274
ee2cfb32702a #OTHER by mawalch
mawalch
parents: 21745
diff changeset
  1275
    "Modified (comment): / 11-05-2017 / 12:43:08 / mawalch"
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1276
! !
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1277
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7247
diff changeset
  1278
!CharacterArray methodsFor:'Compatibility-ST/V'!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1279
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1280
asArrayOfSubstrings
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1281
    "return an array of substrings from the receiver, interpreting
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1282
     separators (i.e. spaces & newlines) as word-delimiters.
18390
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1283
     This has been added for ST/V compatibility
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1284
     - the actual work is done in asCollectionOfWords.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  1285
     (sigh: it is called #'subStrings' in V'Age, #'substrings' in Squeak
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1286
     and #'asCollectionOfWords' in ST/X) "
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1287
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1288
    ^ self asCollectionOfWords asArray
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1289
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1290
    "
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1291
     '1 one two three four 5 five' asArrayOfSubstrings
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1292
     '1
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1293
one
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1294
        two three four 5 five' asArrayOfSubstrings
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1295
    "
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1296
!
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1297
19497
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1298
equalsIgnoreCase:aString
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1299
    "This is an ST/V compatibility method and an alias for sameAs:."
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1300
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1301
    ^ self sameAs:aString
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1302
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1303
    "
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1304
     'abc' equalsIgnoreCase: 'aBC'
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1305
    "
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1306
!
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1307
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1308
replChar:oldChar with:newChar
19497
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1309
    "return a copy of the receiver, with all oldChars replaced by newChar.
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1310
     This is an ST/V compatibility method and an alias for copyReplaceAll."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1311
3656
347ea0413b68 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
  1312
    ^ self copyReplaceAll:oldChar with:newChar
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1313
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1314
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1315
     '12345678901234567890' replChar:$0 with:$*
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1316
    "
3656
347ea0413b68 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
  1317
347ea0413b68 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
  1318
    "Modified: / 18.7.1998 / 22:52:57 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1319
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1320
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1321
replChar:oldChar withString:newString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1322
    "return a copy of the receiver, with all oldChars replaced
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1323
     by newString (i.e. slice in the newString in place of the oldChar).
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1324
     This is an ST/V compatibility method."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1325
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1326
    |tmpStream|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1327
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  1328
    tmpStream := self species writeStream.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1329
    self do:[:element |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1330
        element = oldChar ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1331
            tmpStream nextPutAll:newString
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1332
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1333
            tmpStream nextPut:element
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1334
        ].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1335
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1336
    ^ tmpStream contents
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1337
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1338
   "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1339
     '12345678901234567890' replChar:$0 withString:'foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1340
     'a string with spaces' replChar:$  withString:' foo '
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1341
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1342
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1343
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1344
replString:subString withString:newString
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1345
    "return a copy of the receiver, with all sequences of subString replaced
18390
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1346
     by newString (i.e. slice in the newString in place of the oldString).
19497
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1347
     This is an ST/V compatibility method and an alias for copyReplaceString."
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1348
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  1349
    ^ self copyReplaceString:subString withString:newString
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1350
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1351
   "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1352
     '12345678901234567890' replString:'123' withString:'OneTwoThree'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1353
     '12345678901234567890' replString:'123' withString:'*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1354
     '12345678901234567890' replString:'234' withString:'foo'
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1355
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1356
     ('a string with spaces' replChar:$  withString:' foo ')
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1357
        replString:'foo' withString:'bar'
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1358
    "
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1359
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  1360
    "Modified: / 12-05-2004 / 12:00:27 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1361
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1362
9275
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1363
subString:start to:end
18390
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1364
    "same as copyFrom:to:
19497
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1365
     This is an ST/V compatibility method and an alias for copyFrom:to:."
18390
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1366
9275
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1367
    ^ self copyFrom:start to:end
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1368
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1369
   "
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1370
     '12345678901234567890' subString:3 to:8
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1371
    "
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1372
!
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1373
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1374
trimBlanks
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  1375
    "return a copy of the receiver without leading and trailing spaces.
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  1376
     This is an ST/V compatibility method and an alias for withoutSpaces."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1377
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1378
    ^ self withoutSpaces
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1379
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1380
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1381
     '    spaces at beginning' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1382
     'spaces at end    ' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1383
     '    spaces at beginning and end     ' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1384
     'no spaces' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1385
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1386
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1387
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1388
!CharacterArray methodsFor:'Compatibility-Squeak'!
4409
86e049b21f8d added #includesSubstring:caseSensitive:
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  1389
19171
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1390
asBoldText
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1391
    "return self as a bold text"
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1392
21843
ac7c8bd9b695 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21840
diff changeset
  1393
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
ac7c8bd9b695 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21840
diff changeset
  1394
    Text isNil ifTrue:[^ self].
ac7c8bd9b695 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21840
diff changeset
  1395
    ^ Text string: self emphasis: #bold
ac7c8bd9b695 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21840
diff changeset
  1396
ac7c8bd9b695 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21840
diff changeset
  1397
    "Modified (comment): / 20-06-2017 / 08:23:49 / cg"
19171
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1398
!
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1399
6148
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1400
asDate
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1401
    "Many allowed forms, see Date.readFrom:"
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1402
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1403
    ^ Date readFrom: (ReadStream on: self)
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1404
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1405
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1406
     '30 Apr 1999' asDate dayName capitalized
6148
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1407
    "
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1408
!
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1409
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  1410
findDelimiters:delimiters startingAt:start
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1411
    "Answer the index of the character within the receiver, starting at start,
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1412
     that matches one of the delimiters.
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1413
     If the receiver does not contain any of the delimiters, answer size + 1."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1414
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1415
    |idx|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1416
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1417
    idx := self indexOfAny:delimiters startingAt:start.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1418
    idx == 0 ifTrue:[^ self size + 1].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1419
    ^ idx.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1420
"/start to: self size do: [:i |
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1421
"/        |char|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1422
"/
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1423
"/        char := self at: i.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1424
"/        delimiters do: [:delim | delim = char ifTrue: [^ i]]
8971
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1425
"/    ].
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1426
"/    ^ self size + 1
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1427
!
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1428
22005
c22b8f19cf2e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21995
diff changeset
  1429
findString:key startingAt:start caseSensitive:caseSensitive
c22b8f19cf2e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21995
diff changeset
  1430
    ^ self indexOfSubCollection:key startingAt:start ifAbsent:[0] caseSensitive:caseSensitive
c22b8f19cf2e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21995
diff changeset
  1431
c22b8f19cf2e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21995
diff changeset
  1432
    "Created: / 13-07-2017 / 12:44:50 / cg"
c22b8f19cf2e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21995
diff changeset
  1433
!
c22b8f19cf2e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 21995
diff changeset
  1434
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1435
findTokens:delimiterOrDelimiters
7270
37248a67718a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7265
diff changeset
  1436
    "cg: I am not sure, if this is really the squeak semantics (w.r.t. empty fields)"
37248a67718a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7265
diff changeset
  1437
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1438
    delimiterOrDelimiters size == 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1439
        ^ self asCollectionOfSubstringsSeparatedBy:delimiterOrDelimiters
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1440
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1441
        ^ self asCollectionOfSubstringsSeparatedByAny:delimiterOrDelimiters
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1442
    ].
7270
37248a67718a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7265
diff changeset
  1443
37248a67718a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7265
diff changeset
  1444
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1445
     'a|b#c||e' findTokens:#($# $|)
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1446
     'a|b#c||e' findTokens:$|
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1447
    "
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1448
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1449
    "Modified: / 04-09-2011 / 20:31:21 / cg"
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1450
    "Modified (comment): / 05-09-2011 / 04:25:28 / cg"
4981
2ee8cd2c4c8e squeak compatibility
ps
parents: 4974
diff changeset
  1451
!
2ee8cd2c4c8e squeak compatibility
ps
parents: 4974
diff changeset
  1452
4974
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1453
includesSubString:aString
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1454
    "return true, if a substring is contained in the receiver.
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1455
     The compare is case sensitive."
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1456
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1457
    ^ self includesString:aString
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1458
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1459
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1460
     'hello world' includesSubString:'Hel'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1461
     'hello world' includesSubString:'hel'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1462
     'hello world' includesSubString:'llo'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1463
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1464
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1465
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1466
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1467
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1468
11178
668d5d9a4d5d added #includesSubString:caseSensitive:
sr
parents: 11062
diff changeset
  1469
includesSubString:aString caseSensitive:caseSensitive
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1470
    "sigh - an alias; added for Squeak/Pharo compatibility"
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1471
25196
b80a00ad0495 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 25189
diff changeset
  1472
    ^ self includesString:aString caseSensitive:caseSensitive
11178
668d5d9a4d5d added #includesSubString:caseSensitive:
sr
parents: 11062
diff changeset
  1473
!
668d5d9a4d5d added #includesSubString:caseSensitive:
sr
parents: 11062
diff changeset
  1474
16875
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1475
includesSubstring: aString
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1476
    "sigh - an alias; added for Squeak/Pharo compatibility"
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1477
24085
d7c121c70d1e #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24041
diff changeset
  1478
    ^ self includesString: aString
16875
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1479
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1480
    "Created: / 03-10-2014 / 02:47:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
24085
d7c121c70d1e #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24041
diff changeset
  1481
    "Modified: / 16-04-2019 / 12:32:50 / Stefan Vogel"
16875
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1482
!
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1483
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1484
includesSubstring:aString caseSensitive:caseSensitive
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1485
    "return true, if a substring is contained in the receiver.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1486
     The argument, caseSensitive controls if case is ignored in the compare."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1487
24085
d7c121c70d1e #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24041
diff changeset
  1488
    ^ (self indexOfSubCollection:aString startingAt:1 ifAbsent:0 caseSensitive:caseSensitive) ~~ 0
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1489
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1490
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1491
     'hello world' includesSubstring:'Hel' caseSensitive:true
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1492
     'hello world' includesSubstring:'Hel' caseSensitive:false
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1493
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1494
24085
d7c121c70d1e #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24041
diff changeset
  1495
    "Modified (comment): / 16-04-2019 / 12:35:33 / Stefan Vogel"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1496
!
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1497
6979
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1498
isAllDigits
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1499
    "Answer whether the receiver's characters are all digits"
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1500
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1501
    ^ self conform:[:eachChar | eachChar isDigit]
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1502
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1503
    "
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1504
     'hello world' isAllDigits
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1505
     '12344' isAllDigits
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1506
    "
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1507
!
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1508
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1509
lastSpacePosition
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1510
    "return the index of the last space character; 0 if there is none.
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1511
     Added for Squeak/Pharo compatibility"
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  1512
20739
d9d2ce1e2761 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20738
diff changeset
  1513
    "/ CG: is this correct? separator or space only???
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1514
    ^ self lastIndexOfSeparator
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1515
!
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1516
20738
c57c04bd5652 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20705
diff changeset
  1517
linesDo:aBlock
c57c04bd5652 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20705
diff changeset
  1518
    "evaluate the argument, aBlock for all lines,
c57c04bd5652 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20705
diff changeset
  1519
     up to the end"
c57c04bd5652 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20705
diff changeset
  1520
c57c04bd5652 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20705
diff changeset
  1521
    ^ self readStream linesDo:aBlock
c57c04bd5652 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20705
diff changeset
  1522
!
c57c04bd5652 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20705
diff changeset
  1523
7022
0c3c73f83b7f padded:to:with: - for squeak
penk
parents: 7020
diff changeset
  1524
padded:leftOrRight to:paddedSize with:padCharacter
20155
6ab108dfcb3f #DOCUMENTATION by mawalch
mawalch
parents: 20017
diff changeset
  1525
    "pad left (leftOrRight == #left) or right"
14053
acbb97913c30 comment/format in: #padded:to:with:
Claus Gittinger <cg@exept.de>
parents: 14050
diff changeset
  1526
7022
0c3c73f83b7f padded:to:with: - for squeak
penk
parents: 7020
diff changeset
  1527
    leftOrRight == #left ifTrue:[
20155
6ab108dfcb3f #DOCUMENTATION by mawalch
mawalch
parents: 20017
diff changeset
  1528
        ^ self leftPaddedTo:paddedSize with:padCharacter
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1529
    ].
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1530
    ^ self paddedTo:paddedSize with:padCharacter
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1531
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1532
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1533
     'hello' padded:#right to:10 with:$.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1534
     'hello' padded:#left to:10 with:$.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1535
    "
14053
acbb97913c30 comment/format in: #padded:to:with:
Claus Gittinger <cg@exept.de>
parents: 14050
diff changeset
  1536
acbb97913c30 comment/format in: #padded:to:with:
Claus Gittinger <cg@exept.de>
parents: 14050
diff changeset
  1537
    "Modified (comment): / 07-03-2012 / 16:31:33 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1538
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1539
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1540
skipDelimiters:delimiters startingAt:start
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1541
    "Answer the index of the character within the receiver, starting at start,
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1542
     that does NOT match one of the delimiters.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1543
     If the receiver does not contain any of the delimiters, answer size + 1.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1544
     Assumes the delimiters to be a non-empty string."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1545
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1546
    start to:self size do:[:i |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1547
        delimiters detect:[:delim | delim = (self at:i) ] ifNone:[ ^ i ]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1548
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1549
    ^ self size + 1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1550
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1551
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1552
     '123***7890' skipDelimiters:'*' startingAt:4
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1553
     '123***7890' skipDelimiters:'*' startingAt:3
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1554
     '123***7890' skipDelimiters:'*' startingAt:10
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1555
     '123*******' skipDelimiters:'*' startingAt:10
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1556
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1557
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1558
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1559
substrings
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1560
    "return a collection consisting of all words contained in the receiver.
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1561
     Words are separated by whitespace.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1562
     This has been added for Squeak compatibility.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1563
     (sigh: it is called #'subStrings' in V'Age, and #'asCollectionOfWords' in ST/X) "
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1564
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1565
    ^ self asCollectionOfWords
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1566
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1567
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1568
     'foo bar baz' substrings
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1569
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1570
!
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1571
12665
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1572
substringsSeparatedBy:separatorCharacter
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1573
    "return a collection consisting of all words contained in the receiver.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1574
     Words are separated by the given separator character.
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1575
     This has been added for Squeak/Pharo compatibility.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1576
     (sigh: it is called #'subStrings:' in V'Age,
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1577
      and #'asCollectionOfSubstringsSeparatedBy' in ST/X) "
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1578
12665
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1579
    ^ self asCollectionOfSubstringsSeparatedBy:separatorCharacter
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1580
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1581
    "
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1582
     'foo bar, baz' substringsSeparatedBy:$,
21151
6e1dab620e6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21145
diff changeset
  1583
     '1.2.3.4' substringsSeparatedBy:$.
12665
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1584
    "
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1585
!
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1586
23188
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1587
trimBoth
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1588
    "return a copy of the receiver without leading and trailing whiteSpace.
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1589
     Added for Squeak compatibility (an alias for withoutSeparators)"
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1590
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1591
    ^ self withoutSeparators
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1592
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1593
    "Created: / 03-07-2018 / 11:08:29 / Claus Gittinger"
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1594
!
709c48bf557e #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23187
diff changeset
  1595
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1596
truncateTo:smallSize
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1597
    "return myself or a copy shortened to smallSize.  1/18/96 sw"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1598
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1599
    self size <= smallSize ifTrue:[^ self].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1600
    ^ self copyFrom: 1 to: smallSize
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1601
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1602
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1603
     'hello world' truncateTo:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1604
     'hello' truncateTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1605
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1606
     'hello world' copyTo:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1607
     'hello' copyTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1608
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1609
!
5795
d67a8ff4d98e added #truncateTo:
Claus Gittinger <cg@exept.de>
parents: 5794
diff changeset
  1610
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1611
withBlanksTrimmed
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  1612
    "Return a copy of the receiver from which leading and trailing whitespace have been trimmed.
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  1613
     Notice the bad naming - it is trimming separators, not just blanks.
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  1614
     Added for Squeak compatibility and an alias for withoutSeparators"
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1615
14865
8d6cc362aff7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14768
diff changeset
  1616
    ^ self withoutSeparators "withoutSpaces"    "/ cg: it seems that squeak cares for any whitespace
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1617
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1618
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1619
     '  hello    world    ' withBlanksTrimmed
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1620
    "
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1621
!
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1622
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1623
withoutLeading: char
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1624
    "return a copy of myself without leading a char.
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1625
     Returns an empty string, if the receiver consist only of a char."
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1626
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1627
    ^ self withoutLeadingForWhich:[:ch | ch = char]
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1628
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1629
    "
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1630
     '****foo****' withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1631
     'foo****'     withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1632
     '*'           withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1633
     ''            withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1634
     '****foo'     withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1635
     '*******'     withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1636
     'foo'         withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1637
     'f***o***o'   withoutLeading: $*
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1638
     ('**' , Character tab asString , '*foo***') withoutLeading: $* inspect
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1639
    "
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1640
!
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1641
11565
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1642
withoutTrailing:char
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1643
    "return a copy of myself without trailing char.
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1644
     Returns an empty string, if the receiver consist only of char."
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1645
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1646
    ^ self withoutTrailingForWhich:[:ch | ch = char]
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1647
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1648
    "
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1649
     '    foo....' withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1650
     'foo....'     withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1651
     '    foo'     withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1652
     '.......'     withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1653
     'foo'         withoutTrailing:$.
11565
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1654
    "
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1655
! !
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1656
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1657
!CharacterArray methodsFor:'Compatibility-V''Age'!
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1658
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1659
addLineDelimiter
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1660
    "replace all '\'-characters by line delimiter (cr) - characters.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1661
     This has been added for VisualAge compatibility."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1662
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1663
    ^ self withCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1664
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1665
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1666
bindWith:aString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1667
    "return a copy of the receiver, where a '%1' escape is
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1668
     replaced by aString.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1669
     This has been added for VisualAge compatibility."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1670
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1671
    ^ self expandPlaceholdersWith:{ aString }
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1672
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1673
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1674
     'do you like %1 ?' bindWith:'smalltalk'
19785
c9672beda785 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19775
diff changeset
  1675
     'do you like %(foo) ?' bindWithArguments:(Dictionary new at:'foo' put:'smalltalk'; yourself)
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1676
    "
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1677
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1678
    "Modified (format): / 02-04-2019 / 14:05:22 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1679
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1680
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1681
bindWith:string1 with:string2
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1682
    "return a copy of the receiver, where a '%1' escape is
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1683
     replaced by string1 and '%2' is replaced by string2.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1684
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1685
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1686
    ^ self expandPlaceholdersWith:{string1 . string2}
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1687
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1688
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1689
     'do you prefer %1 or rather %2 ?'
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1690
        bindWith:'smalltalk' with:'c++'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1691
    "
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1692
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1693
    "Modified (format): / 02-04-2019 / 14:05:32 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1694
!
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1695
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1696
bindWith:str1 with:str2 with:str3
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1697
    "return a copy of the receiver, where a '%1', '%2' and '%3' escapes
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1698
     are replaced by str1, str2 and str3 respectively.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1699
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1700
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1701
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 }
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1702
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1703
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1704
     'do you prefer %1 or rather %2 (not talking about %3) ?'
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1705
        bindWith:'smalltalk' with:'c++' with:'c'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1706
    "
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1707
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1708
    "Modified (format): / 02-04-2019 / 14:05:45 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1709
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1710
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1711
bindWith:str1 with:str2 with:str3 with:str4
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1712
    "return a copy of the receiver, where a '%1', '%2', '%3' and '%4' escapes
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1713
     are replaced by str1, str2, str3 and str4 respectively.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1714
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1715
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1716
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 }
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1717
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1718
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1719
     'do you prefer %1 or rather %2 (not talking about %3 or even %4) ?'
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1720
        bindWith:'smalltalk' with:'c++' with:'c' with:'assembler'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1721
    "
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1722
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1723
    "Modified (format): / 02-04-2019 / 14:06:01 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1724
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1725
2344
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1726
bindWith:str1 with:str2 with:str3 with:str4 with:str5
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1727
    "return a copy of the receiver, where a '%1' .. '%5' escapes
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1728
     are replaced by str1 .. str5 respectively.
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1729
     This has been added for VisualAge compatibility."
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1730
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1731
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 }
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1732
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1733
    "Created: / 31-01-1997 / 16:25:42 / cg"
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1734
    "Modified: / 02-04-2019 / 14:06:17 / Claus Gittinger"
2344
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1735
!
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1736
5343
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1737
bindWith:str1 with:str2 with:str3 with:str4 with:str5 with:str6
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1738
    "return a copy of the receiver, where a '%1' .. '%6' escapes
11524
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1739
     are replaced by str1 .. str6 respectively.
5343
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1740
     This has been added for VisualAge compatibility."
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1741
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1742
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 }
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1743
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1744
    "Modified (format): / 02-04-2019 / 14:06:36 / Claus Gittinger"
11524
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1745
!
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1746
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1747
bindWith:str1 with:str2 with:str3 with:str4 with:str5 with:str6 with:str7
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1748
    "return a copy of the receiver, where a '%1' .. '%7' escapes
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1749
     are replaced by str1 .. str7 respectively.
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1750
     This has been added for VisualAge compatibility."
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1751
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1752
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 . str7 }
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1753
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1754
    "Modified (format): / 02-04-2019 / 14:06:59 / Claus Gittinger"
5343
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1755
!
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1756
13996
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1757
bindWith:str1 with:str2 with:str3 with:str4 with:str5 with:str6 with:str7 with:str8
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1758
    "return a copy of the receiver, where a '%1' .. '%8' escapes
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1759
     are replaced by str1 .. str8 respectively.
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1760
     This has been added for VisualAge compatibility."
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1761
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1762
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 . str7 . str8 }
13996
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1763
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1764
    "Created: / 06-02-2012 / 10:33:18 / cg"
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1765
    "Modified: / 02-04-2019 / 14:07:15 / Claus Gittinger"
13996
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1766
!
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1767
14014
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1768
bindWith:str1 with:str2 with:str3 with:str4 with:str5 with:str6 with:str7 with:str8 with:str9
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1769
    "return a copy of the receiver, where a '%1' .. '%9' escapes
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1770
     are replaced by str1 .. str9 respectively.
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1771
     This has been added for VisualAge compatibility."
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1772
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1773
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 . str7 . str8 . str9 }
14014
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1774
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1775
    "Created: / 14-02-2012 / 17:42:31 / cg"
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1776
    "Modified: / 02-04-2019 / 14:07:35 / Claus Gittinger"
14014
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1777
!
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1778
22924
f506768961d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22911
diff changeset
  1779
bindWithArguments:argumentsCollection
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1780
    "return a copy of the receiver, where a '%i' escape
21747
ee2cfb32702a #OTHER by mawalch
mawalch
parents: 21745
diff changeset
  1781
     is replaced by the corresponding string from the argument array.
22924
f506768961d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22911
diff changeset
  1782
     'i' may be between 1 and 9 (i.e. a maximum of 9 placeholders is allowed)
f506768961d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22911
diff changeset
  1783
     or %(key); the argumentsCollection must then be a dictionary.
21255
81aa6fa65292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21151
diff changeset
  1784
     To get an integer-indexed placeHolder followed by another digit,
81aa6fa65292 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21151
diff changeset
  1785
     or an index > 9, you must use %(digit).
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1786
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1787
22924
f506768961d7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22911
diff changeset
  1788
    ^ self expandPlaceholdersWith:argumentsCollection
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1789
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1790
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1791
     'do you prefer %1 or rather %2 (not talking about %3) ?'
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1792
        bindWithArguments:#('smalltalk' 'c++' 'c')
12196
5718ecf81f37 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12188
diff changeset
  1793
5718ecf81f37 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12188
diff changeset
  1794
     'do you %(what) ?'
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1795
        bindWithArguments:(Dictionary new at:#'what' put:'understand'; yourself)
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1796
    "
21747
ee2cfb32702a #OTHER by mawalch
mawalch
parents: 21745
diff changeset
  1797
ee2cfb32702a #OTHER by mawalch
mawalch
parents: 21745
diff changeset
  1798
    "Modified (comment): / 11-05-2017 / 12:42:57 / mawalch"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1799
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1800
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1801
subStrings
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1802
    "return a collection consisting of all words contained in the receiver.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1803
     Words are separated by whitespace.
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1804
     This has been added for VisualAge compatibility.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1805
     (sigh: it is called #'subbtrings' in Squeak, and #'asCollectionOfWords' in ST/X) "
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1806
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1807
    ^ self asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1808
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1809
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1810
     'hello world, this is smalltalk' subStrings
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1811
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1812
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1813
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1814
subStrings:separatorCharacterOrString
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1815
    "return a collection consisting of all words contained in the receiver.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1816
     Words are separated by separatorCharacter.
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1817
     This is similar to split: (squeak) and asCollectionOfSubstringsSeparatedBy: (st/x)
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1818
     and has been added for VisualAge compatibility."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1819
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1820
    separatorCharacterOrString isCharacter ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  1821
        ^ self asCollectionOfSubstringsSeparatedBy:separatorCharacterOrString
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1822
    ].
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1823
    ^ self asCollectionOfSubstringsSeparatedByAny:separatorCharacterOrString
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1824
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1825
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  1826
     'foo:bar:baz:smalltalk' subStrings:$:
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1827
     'foo:bar:baz:smalltalk' subStrings:':'
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1828
     'foo.bar,baz-smalltalk' subStrings:'.,-'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1829
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1830
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1831
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1832
trimSeparators
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1833
    "return a copy of the receiver without leading and trailing whiteSpace.
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1834
     Added for VisualAge compatibility (an alias for withoutSeparators)"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1835
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1836
    ^ self withoutSeparators
24538
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1837
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1838
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1839
with:aString
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1840
    "return a copy of the receiver, where a '%1' escape is replaced by aString.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1841
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1842
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1843
    ^ self expandPlaceholdersWith:{ aString }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1844
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1845
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1846
     'do you like %1 ?' with:'smalltalk'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1847
     'do you like %(foo) ?' withArguments:(Dictionary new at:'foo' put:'smalltalk'; yourself)
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1848
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1849
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1850
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1851
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1852
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1853
with:string1 with:string2
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1854
    "return a copy of the receiver, 
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1855
     where a '%1' escape is replaced by string1 and '%2' is replaced by string2.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1856
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1857
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1858
    ^ self expandPlaceholdersWith:{string1 . string2}
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1859
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1860
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1861
     'do you prefer %1 or rather %2 ?' with:'smalltalk' with:'c++'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1862
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1863
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1864
    "Modified (format): / 02-04-2019 / 14:05:32 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1865
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1866
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1867
with:str1 with:str2 with:str3
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1868
    "return a copy of the receiver, 
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1869
     where a '%1', '%2' and '%3' escapes are replaced by str1, str2 and str3 respectively.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1870
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1871
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1872
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1873
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1874
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1875
     'do you prefer %1 or rather %2 (not talking about %3) ?'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1876
        with:'smalltalk' with:'c++' with:'c'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1877
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1878
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1879
    "Modified (format): / 02-04-2019 / 14:05:45 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1880
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1881
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1882
with:str1 with:str2 with:str3 with:str4
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1883
    "return a copy of the receiver, where a '%1', '%2', '%3' and '%4' escapes
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1884
     are replaced by str1, str2, str3 and str4 respectively.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1885
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1886
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1887
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1888
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1889
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1890
     'do you prefer %1 or rather %2 (not talking about %3 or even %4) ?'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1891
        with:'smalltalk' with:'c++' with:'c' with:'assembler'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1892
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1893
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1894
    "Modified (format): / 02-04-2019 / 14:06:01 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1895
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1896
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1897
with:str1 with:str2 with:str3 with:str4 with:str5
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1898
    "return a copy of the receiver, where a '%1' .. '%5' escapes
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1899
     are replaced by str1 .. str5 respectively.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1900
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1901
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1902
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1903
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1904
    "Created: / 31-01-1997 / 16:25:42 / cg"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1905
    "Modified: / 02-04-2019 / 14:06:17 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1906
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1907
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1908
with:str1 with:str2 with:str3 with:str4 with:str5 with:str6
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1909
    "return a copy of the receiver, where a '%1' .. '%6' escapes
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1910
     are replaced by str1 .. str6 respectively.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1911
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1912
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1913
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1914
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1915
    "Modified (format): / 02-04-2019 / 14:06:36 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1916
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1917
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1918
with:str1 with:str2 with:str3 with:str4 with:str5 with:str6 with:str7
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1919
    "return a copy of the receiver, where a '%1' .. '%7' escapes
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1920
     are replaced by str1 .. str7 respectively.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1921
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1922
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1923
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 . str7 }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1924
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1925
    "Modified (format): / 02-04-2019 / 14:06:59 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1926
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1927
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1928
with:str1 with:str2 with:str3 with:str4 with:str5 with:str6 with:str7 with:str8
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1929
    "return a copy of the receiver, where a '%1' .. '%8' escapes
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1930
     are replaced by str1 .. str8 respectively.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1931
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1932
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1933
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 . str7 . str8 }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1934
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1935
    "Created: / 06-02-2012 / 10:33:18 / cg"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1936
    "Modified: / 02-04-2019 / 14:07:15 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1937
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1938
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1939
with:str1 with:str2 with:str3 with:str4 with:str5 with:str6 with:str7 with:str8 with:str9
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1940
    "return a copy of the receiver, where a '%1' .. '%9' escapes
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1941
     are replaced by str1 .. str9 respectively.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1942
     Added for protocol compatibility with resourcePack xlation."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1943
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1944
    ^ self expandPlaceholdersWith:{ str1 . str2 . str3 . str4 . str5 . str6 . str7 . str8 . str9 }
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1945
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1946
    "Created: / 14-02-2012 / 17:42:31 / cg"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1947
    "Modified: / 02-04-2019 / 14:07:35 / Claus Gittinger"
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1948
!
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1949
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1950
withArguments:argumentsCollection
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1951
    "return a copy of the receiver, where the '%i' escapes
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1952
     are replaced by the corresponding string from the argument array.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1953
     'i' may be between 1 and 9 (i.e. a maximum of 9 placeholders is allowed)
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1954
     or %(key); the argumentsCollection must then be a dictionary.
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1955
     To get an integer-indexed placeHolder followed by another digit,
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1956
     or an index > 9, you must use %(digit).
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1957
     This has been added for VisualAge compatibility."
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1958
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1959
    ^ self expandPlaceholdersWith:argumentsCollection
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1960
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1961
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1962
     'do you prefer %1 or rather %2 (not talking about %3) ?'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1963
        withArguments:#('smalltalk' 'c++' 'c')
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1964
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1965
     'do you %(what) ?'
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1966
        withArguments:(Dictionary new at:#'what' put:'understand'; yourself)
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1967
    "
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1968
a1bdc26bd881 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24535
diff changeset
  1969
    "Modified (comment): / 11-05-2017 / 12:42:57 / mawalch"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1970
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1971
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1972
!CharacterArray methodsFor:'Compatibility-VW'!
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1973
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1974
expandMacros
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1975
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1976
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1977
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1978
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1979
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1980
    ^ self expandMacrosWithArguments:#()
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1981
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1982
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1983
     'hello<n>foo' expandMacros
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1984
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1985
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1986
    "Modified: / 18.6.1998 / 16:03:02 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1987
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1988
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1989
expandMacrosWith:arg
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1990
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1991
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1992
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1993
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1994
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1995
    ^ self expandMacrosWithArguments:{ arg }
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1996
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1997
    "Created: / 01-11-1997 / 13:01:28 / cg"
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  1998
    "Modified: / 02-04-2019 / 14:09:26 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1999
!
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2000
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2001
expandMacrosWith:arg1 with:arg2
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2002
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2003
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2004
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2005
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2006
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2007
    ^ self expandMacrosWithArguments:{arg1 . arg2 }
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2008
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2009
    "Modified: / 06-07-1998 / 21:58:14 / cg"
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2010
    "Modified: / 02-04-2019 / 14:09:36 / Claus Gittinger"
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2011
!
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2012
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2013
expandMacrosWith:arg1 with:arg2 with:arg3
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2014
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2015
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2016
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2017
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2018
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2019
    ^ self expandMacrosWithArguments:{ arg1 . arg2 . arg3 }
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2020
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2021
    "Modified (format): / 02-04-2019 / 14:09:48 / Claus Gittinger"
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2022
!
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2023
10353
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2024
expandMacrosWith:arg1 with:arg2 with:arg3 with:arg4
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2025
    "ST80 compatibility - expand '<..>' macros with
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2026
     argument strings. Similar to #bindWith:.
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2027
     Read the comment in #expandMacrosWithArguments: about
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2028
     limited compatibility issues."
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2029
24038
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2030
    ^ self expandMacrosWithArguments:{ arg1 . arg2 . arg3 . arg4 }
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2031
917ed6428d22 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24037
diff changeset
  2032
    "Modified (format): / 02-04-2019 / 14:10:05 / Claus Gittinger"
10353
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2033
!
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  2034
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2035
expandMacrosWithArguments:argArray
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2036
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2037
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2038
     WARNING: possibly not all ST80 expansions are supported here."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2039
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2040
    "/ supported expansions:
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2041
    "/
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2042
    "/   <#p>       # is arg Number; slice in the args printString
8222
f2c454a9a038 replaced '' writeStream by String writeStream
Claus Gittinger <cg@exept.de>
parents: 8124
diff changeset
  2043
    "/   <#s>       # is arg Number; slice in the arg itself (must know asString)
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2044
    "/   <#?s1:s2>  # is arg Number; slice in s1 if the arg is true, s2 otherwise
7643
53536a53dcbc comment
Claus Gittinger <cg@exept.de>
parents: 7641
diff changeset
  2045
    "/              use first arg if # is not given (i.e. no number before s,p ...)
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2046
    "/   <n>        replace by a newLine character
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2047
    "/   <t>        replace by a tab character
6834
eba4b58b8692 fixed expandMacros (%-escape)
Claus Gittinger <cg@exept.de>
parents: 6810
diff changeset
  2048
    "/   %X         the X character itself
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2049
8999
f3fda66ea51e #expandMacrosWithArguments: - be mor friendly to xml strings.
Stefan Vogel <sv@exept.de>
parents: 8971
diff changeset
  2050
    |in out c fmt nr arg s1 s2 peekc|
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2051
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2052
    in := self readStream.
10721
58e6950264cb care for bitsPerCharacter when expanding macros
Claus Gittinger <cg@exept.de>
parents: 10703
diff changeset
  2053
    out := CharacterWriteStream on:(self species uninitializedNew:self size).
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2054
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2055
    [in atEnd] whileFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2056
        c := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2057
        c == $% ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2058
            c := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2059
            out nextPut:c
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2060
        ] ifFalse:[c ~~ $< ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2061
            out nextPut:c.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2062
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2063
            peekc := in peek.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2064
            [peekc == $<] whileTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2065
                out nextPut:$<.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2066
                peekc := in nextPeek.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2067
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2068
            peekc == $n ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2069
                peekc := in nextPeek.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2070
                peekc == $> ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2071
                    in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2072
                    out cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2073
                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2074
                    out nextPutAll:'<n'.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2075
                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2076
            ] ifFalse:[peekc == $t ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2077
                peekc := in nextPeek.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2078
                peekc == $> ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2079
                    in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2080
                    out tab.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2081
                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2082
                    out nextPutAll:'<t'.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2083
                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2084
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2085
                peekc isDigit ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2086
                    "start an argument expansion ..."
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2087
                    nr := Integer readFrom:in onError:nil.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2088
                    nr isNil ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2089
                        "this cannot happen (there is at least one digit)"
23009
c3309c64390e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23001
diff changeset
  2090
                        self proceedableError:'invalid format'.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2091
                        ^ self
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2092
                    ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2093
                    fmt := in next.
22999
c3bafb980bf4 VW compatible expandMacros
Claus Gittinger <cg@exept.de>
parents: 22953
diff changeset
  2094
                    (fmt ~~ $? and:[fmt ~~ $# and:[in peek ~~ $>]]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2095
                        out nextPut:$<.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2096
                        nr printOn:out.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2097
                        out nextPut:fmt.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2098
                    ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2099
                        (nr between:1 and:argArray size) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2100
                            arg := argArray at:nr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2101
                        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2102
                            arg := ''
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2103
                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2104
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2105
                        fmt == $p ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2106
                            "expand with args printString"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2107
                            arg printOn:out.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2108
                        ] ifFalse:[fmt == $s ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2109
                            "expand with arg itself"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2110
                            arg isText ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2111
                                out contentsSpecies isText ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2112
                                    out := (TextStream ? CharacterWriteStream on:Text new) nextPutAll:out contents; yourself.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2113
                                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2114
                                out nextPutAll:arg.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2115
                            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2116
                                out nextPutAll:arg asString string.  "see method comment: arg must know #asString"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2117
                            ]
22999
c3bafb980bf4 VW compatible expandMacros
Claus Gittinger <cg@exept.de>
parents: 22953
diff changeset
  2118
                        ] ifFalse:[(fmt == $? or:[fmt == $#]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2119
                            s1 := in upTo:$:.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2120
                            s2 := in nextUpTo:$>.
22999
c3bafb980bf4 VW compatible expandMacros
Claus Gittinger <cg@exept.de>
parents: 22953
diff changeset
  2121
                            ((fmt == $? and:[arg == true])
23009
c3309c64390e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23001
diff changeset
  2122
                            or:[(fmt == $# and:[arg == 1])]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2123
                                out nextPutAll:s1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2124
                            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2125
                                out nextPutAll:s2
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2126
                            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2127
                        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2128
                            "what does VW do here ?"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2129
                            self error:'invalid format' mayProceed:true.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2130
                            ^ self
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2131
                        ]]].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2132
                        c := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2133
                        c ~~ $> ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2134
                            "what does VW do here ?"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2135
                            self error:'invalid format' mayProceed:true.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2136
                            ^ self
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2137
                        ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2138
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2139
                    ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2140
                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2141
                    out nextPut:$<.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2142
                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2143
            ]].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2144
        ]].
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2145
    ].
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2146
    ^ out contents
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2147
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2148
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2149
     'hello <1s> how are you' expandMacrosWith:(OperatingSystem getLoginName)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2150
     'one plus one is <1p>' expandMacrosWith:2
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2151
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  2152
10721
58e6950264cb care for bitsPerCharacter when expanding macros
Claus Gittinger <cg@exept.de>
parents: 10703
diff changeset
  2153
    "Modified: / 18-09-2007 / 22:50:43 / cg"
23009
c3309c64390e #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23001
diff changeset
  2154
    "Modified: / 24-05-2018 / 21:06:31 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2155
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2156
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2157
isCharacters
21318
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  2158
    "true, if the receiver is a string-like thing.
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  2159
     added for visual works compatibility"
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  2160
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  2161
    "/ kept in libbasic package, because it is used in libjava and imap-implementation 
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2162
    ^ true
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2163
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2164
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2165
!CharacterArray methodsFor:'JavaScript support'!
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2166
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2167
unquote
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  2168
    "removes double quotes from the receiver.
19698
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2169
     This is the JavaScript standard unquote function."
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2170
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2171
    ^ self unquote:$"
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2172
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2173
    "
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  2174
     'hello' quote unquote
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  2175
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2176
     JavaScriptParser evaluate:'''hello''.quote.unquote'
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2177
    "
19698
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2178
!
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2179
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2180
unquote:quoteCharacter
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2181
    "removes quoteCharacter from either end of the receiver."
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2182
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2183
    |mySize|
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2184
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2185
    (mySize := self size) >= 2 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2186
        ((self first == quoteCharacter) and:[self last == quoteCharacter]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2187
            ^ self copyFrom:2 to:mySize-1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2188
        ].
19698
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2189
    ].
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2190
    ^ self
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2191
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2192
    "
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2193
     '*hello*' unquote:$*
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2194
    "
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2195
! !
13510
150d12670b9f comment/format
Claus Gittinger <cg@exept.de>
parents: 13504
diff changeset
  2196
16175
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2197
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2198
!CharacterArray methodsFor:'character searching'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2199
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2200
includesMatchCharacters
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  2201
    "return true if the receiver includes any GLOB meta-match characters (i.e. $* or $#)
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2202
     for match operations; false if not.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2203
     Here, do not care for $\ escapes"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2204
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2205
    ^ self includesAny:'*#['
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2206
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2207
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2208
     '*foo' includesMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2209
     '\*foo' includesMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2210
     '\*foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2211
     '*foo' includesMatchCharacters
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2212
     '\\*foo' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2213
     'foo*' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2214
     'foo\*' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2215
     'foo\' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2216
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2217
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2218
    "Modified: 2.4.1997 / 18:12:34 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2219
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2220
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2221
includesSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2222
    "return true, if the receiver contains any whitespace characters"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2223
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2224
    ^ (self indexOfSeparator ~~ 0)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2225
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2226
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2227
     'hello world' includesSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2228
     'helloworld' includesSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2229
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2230
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2231
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2232
includesUnescapedMatchCharacters
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2233
    "return true if the receiver really includes any meta characters (i.e. $* or $#)
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2234
     for match operations; false if not.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2235
     Here, care for $\ escapes"
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2236
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2237
    |idx sz specialChars escape|
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2238
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2239
    idx := 1.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2240
    sz := self size.
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2241
    specialChars := '*#[\'.
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2242
    (escape := self class matchEscapeCharacter) ~~ $\ ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2243
        specialChars := specialChars copy.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2244
        specialChars at:specialChars size put:escape
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2245
    ].
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2246
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
  2247
    [
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2248
        idx := self indexOfAny:specialChars startingAt:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2249
        idx == 0 ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2250
        (self at:idx) == escape ifFalse:[^ true].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2251
        idx := idx + 2.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2252
        idx > sz ifTrue:[^ false].
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
  2253
    ] loop.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2254
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2255
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2256
     '*foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2257
     '\*foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2258
     '\\foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2259
     '\\\$foo' includesUnescapedMatchCharacters
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2260
     '*foo' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2261
     '\\*foo' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2262
     'foo*' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2263
     'foo\*' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2264
     'foo\' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2265
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2266
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2267
    "Modified: 2.4.1997 / 17:08:52 / cg"
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2268
    "Created: 2.4.1997 / 17:23:26 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2269
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2270
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2271
indexOfControlCharacterStartingAt:startIndex
3668
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2272
    "return the index of the next control character;
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2273
     that is a character with asciiValue < 32.
15605
99acf495a3cf class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15540
diff changeset
  2274
     Start the search at startIndex, searching forward.
3668
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2275
     Return 0 if none is found."
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2276
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2277
    |start  "{ Class: SmallInteger }"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2278
     mySize "{ Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2279
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2280
    start := startIndex.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2281
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2282
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2283
    start to:mySize do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2284
        (self at:index) isControlCharacter ifTrue:[^ index]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2285
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2286
    ^ 0
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2287
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2288
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2289
     'hello world' asTwoByteString            indexOfControlCharacterStartingAt:1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2290
     'hello world\foo' withCRsasTwoByteString indexOfControlCharacterStartingAt:1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2291
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2292
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2293
    "Modified: / 21.7.1998 / 17:25:07 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2294
!
3668
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2295
8541
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2296
indexOfNonSeparator
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2297
    "return the index of the first non-whitespace character.
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2298
     return 0 if no non-separator was found"
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2299
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2300
    ^ self indexOfNonSeparatorStartingAt:1.
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2301
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2302
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2303
     '    hello world' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2304
     '    ' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2305
     'a   ' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2306
     'abc' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2307
     ' ' indexOfNonSeparator
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2308
     '' indexOfNonSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2309
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2310
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2311
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2312
indexOfNonSeparatorStartingAt:startIndex
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2313
    "return the index of the next non-whitespace character,
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2314
     starting the search at startIndex, searching forward;
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2315
     return 0 if no non-separator was found"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2316
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2317
    |start  "{ Class: SmallInteger }"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2318
     mySize "{ Class: SmallInteger }"|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2319
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2320
    start := startIndex.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2321
    mySize := self size.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2322
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2323
    start to:mySize do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2324
        (self at:index) isSeparator ifFalse:[^ index]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2325
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2326
    ^ 0
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2327
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2328
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2329
     '    hello world' indexOfNonSeparatorStartingAt:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2330
     '    ' indexOfNonSeparatorStartingAt:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2331
     'a   ' indexOfNonSeparatorStartingAt:2
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2332
    "
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2333
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2334
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2335
     |s index1 index2|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2336
     s := '   foo    bar      baz'.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2337
     index1 := s indexOfNonSeparatorStartingAt:1.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2338
     index2 := s indexOfSeparatorStartingAt:index1.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2339
     s copyFrom:index1 to:index2 - 1
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2340
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2341
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2342
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2343
indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2344
    "return the index of the first whitespace character;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2345
     starting the search at the beginning, searching forward;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2346
     return 0 if no separator was found"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2347
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2348
    ^ self indexOfSeparatorStartingAt:1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2349
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2350
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2351
     'hello world' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2352
     'helloworld' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2353
     'hello   ' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2354
     '   hello' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2355
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2356
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2357
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2358
indexOfSeparatorOrEndStartingAt:startIndex
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2359
    "return the index of the next whitespace character,
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2360
     starting the search at startIndex, searching forward;
19737
27fdf5f36ade #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19698
diff changeset
  2361
     return the index of one beyond the end of the receiver if no separator was found.
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2362
     To extract the word, copy from startIndex to the returned index-1"
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2363
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2364
    |idx|
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2365
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2366
    idx := self indexOfSeparatorStartingAt:startIndex.
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2367
    idx == 0 ifTrue:[^ self size + 1].
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2368
    ^ idx.
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2369
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2370
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2371
     'hello world' indexOfSeparatorOrEndStartingAt:3
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2372
     ' hello world' indexOfSeparatorOrEndStartingAt:3
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2373
     'hello world ' indexOfSeparatorOrEndStartingAt:3
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2374
     'hello world ' indexOfSeparatorOrEndStartingAt:6
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2375
     'hello world ' indexOfSeparatorOrEndStartingAt:7
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2376
     'helloworld ' indexOfSeparatorOrEndStartingAt:7
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2377
     'helloworld' indexOfSeparatorOrEndStartingAt:7
19737
27fdf5f36ade #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19698
diff changeset
  2378
     'helloworld' indexOfSeparatorStartingAt:7
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2379
    "
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2380
!
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2381
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2382
indexOfSeparatorStartingAt:startIndex
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2383
    "return the index of the next whitespace character,
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2384
     starting the search at startIndex, searching forward;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2385
     return 0 if no separator was found"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2386
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2387
    |start  "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2388
     mySize "{ Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2389
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2390
    start := startIndex.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2391
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2392
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2393
    start to:mySize do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2394
        (self at:index) isSeparator ifTrue:[^ index]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2395
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2396
    ^ 0
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2397
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2398
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2399
     'hello world' indexOfSeparatorStartingAt:3
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2400
     ' hello world' indexOfSeparatorStartingAt:3
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2401
     'hello world ' indexOfSeparatorStartingAt:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2402
     'hello world ' indexOfSeparatorStartingAt:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2403
     'hello world ' indexOfSeparatorStartingAt:7
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2404
     'helloworld ' indexOfSeparatorStartingAt:7
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2405
     'helloworld' indexOfSeparatorStartingAt:7
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2406
    "
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2407
!
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2408
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2409
lastIndexOfSeparator
14150
e13160aa321a comment/format in: #lastIndexOfSeparator
Claus Gittinger <cg@exept.de>
parents: 14141
diff changeset
  2410
    "return the last index of a whitespace character (space or tab).
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2411
     (i.e. start the search at the end and search backwards);
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2412
     Returns 0 if no separator is found."
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2413
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2414
    ^ self lastIndexOfSeparatorStartingAt:(self size)
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2415
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2416
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2417
     'hello world' lastIndexOfSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2418
     'helloworld' lastIndexOfSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2419
     'hel lo wor ld' lastIndexOfSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2420
     'hel   ' lastIndexOfSeparator 6
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2421
    "
14150
e13160aa321a comment/format in: #lastIndexOfSeparator
Claus Gittinger <cg@exept.de>
parents: 14141
diff changeset
  2422
e13160aa321a comment/format in: #lastIndexOfSeparator
Claus Gittinger <cg@exept.de>
parents: 14141
diff changeset
  2423
    "Modified (comment): / 01-06-2012 / 13:10:30 / cg"
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2424
!
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2425
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2426
lastIndexOfSeparatorStartingAt:startIndex
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2427
    "return the index of the previous whitespace character,
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2428
     starting the search at startIndex (and searching backwards);
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2429
     returns 0 if no separator was found"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2430
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2431
    |start  "{ Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2432
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2433
    start := startIndex.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2434
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2435
    start to:1 by:-1 do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2436
        (self at:index) isSeparator ifTrue:[^ index]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2437
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2438
    ^ 0
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2439
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2440
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2441
     'hello world' lastIndexOfSeparatorStartingAt:3
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2442
     'hello world' lastIndexOfSeparatorStartingAt:7
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2443
     'helloworld' lastIndexOfSeparatorStartingAt:7
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2444
     ' helloworld' lastIndexOfSeparatorStartingAt:7
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2445
    "
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2446
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2447
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2448
!CharacterArray methodsFor:'comparing'!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2449
6742
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2450
< aString
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2451
    "Compare the receiver with the argument and return true if the
6742
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2452
     receiver is greater than the argument. Otherwise return false.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2453
     This comparison is based on the elements ascii code -
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2454
     i.e. upper/lowercase & upper/lowercase & national characters are NOT treated specially."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2455
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2456
    |mySize    "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2457
     otherSize "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2458
     n         "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2459
     c1 c2|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2460
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2461
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2462
    otherSize := aString string size.
6742
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2463
    n := mySize min:otherSize.
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2464
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2465
    1 to:n do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2466
        c1 := self at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2467
        c2 := aString at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2468
        (c1 == c2 or:[c1 = c2]) ifFalse:[^ c1 < c2].
6742
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2469
    ].
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2470
    ^ mySize < otherSize
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2471
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2472
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2473
= aString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2474
    "Compare the receiver with the argument and return true if the
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2475
     receiver is equal to the argument. Otherwise return false.
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2476
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  2477
     This compare does NOT ignore case differences,
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2478
     therefore 'foo' = 'Foo' will return false.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2479
     Since this is incompatible to ST-80 (at least, V2.x) , this may change."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2480
14137
1eb1b4a3f364 Inherit from UninterpretedBytes instead of ByteArray
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
  2481
    |mySize    "{ Class: SmallInteger }"|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2482
5963
23462e06dcff compare with Texts fixed (should compare equal if strings are)
Claus Gittinger <cg@exept.de>
parents: 5946
diff changeset
  2483
    (aString isString or:[aString species == self species]) ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2484
        ^ false
5963
23462e06dcff compare with Texts fixed (should compare equal if strings are)
Claus Gittinger <cg@exept.de>
parents: 5946
diff changeset
  2485
    ].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2486
    mySize := self size.
14137
1eb1b4a3f364 Inherit from UninterpretedBytes instead of ByteArray
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
  2487
    mySize ~~ (aString size) ifTrue:[^ false].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2488
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2489
    1 to:mySize do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2490
        (self at:index) = (aString at:index) ifFalse:[^ false].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2491
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2492
    ^ true
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2493
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2494
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2495
     'foo' = 'Foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2496
     'foo' = 'bar'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2497
     'foo' = 'foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2498
     'foo' = 'foo' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2499
     'foo' asText = 'foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2500
     'foo' asText = 'foo' asText
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2501
    "
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2502
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2503
    "Modified: 22.4.1996 / 15:53:58 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2504
!
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2505
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  2506
> aString
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2507
    "Compare the receiver with the argument and return true if the
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2508
     receiver is greater than the argument. Otherwise return false.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2509
     This comparison is based on the elements ascii code -
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2510
     i.e. upper/lowercase & upper/lowercase & national characters are NOT treated specially."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2511
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2512
    |mySize    "{ Class: SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2513
     otherSize "{ Class: SmallInteger }"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2514
     n         "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2515
     c1 c2|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2516
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2517
    mySize := self size.
5929
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2518
    otherSize := aString string size.
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2519
    n := mySize min:otherSize.
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2520
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2521
    1 to:n do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2522
        c1 := self at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2523
        c2 := aString at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2524
        (c1 == c2 or:[c1 = c2]) ifFalse:[^ c1 > c2].
5929
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2525
    ].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2526
    ^ mySize > otherSize
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2527
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2528
    "Modified: 22.4.1996 / 15:55:00 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2529
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2530
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2531
after:aString
23155
3f803938a75c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23154
diff changeset
  2532
    <resource: #obsolete>
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2533
    "Compare the receiver with the argument and return true if the
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2534
     receiver should come after the argument in a sorted list.
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2535
     Otherwise return false.
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2536
     NOTE: The comparison should be language specific, depending on the value of
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2537
            LC_COLLATE, which is initialized from the environment.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2538
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2539
            Currently it is for Strings, but not for UnicodeStrings...
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2540
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2541
     STUPID:
23155
3f803938a75c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23154
diff changeset
  2542
        #after has a completely different meaning in SeqColl...
3f803938a75c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23154
diff changeset
  2543
        ... therefore it is marked as obsolete.    
3f803938a75c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23154
diff changeset
  2544
    "
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2545
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2546
    ^ (self compareCollatingWith:aString) > 0
23155
3f803938a75c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23154
diff changeset
  2547
3f803938a75c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23154
diff changeset
  2548
    "Modified (comment): / 29-06-2018 / 11:41:33 / Claus Gittinger"
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2549
!
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2550
24232
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2551
caselessAfter:aString
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2552
    "True if the receiver comes after aString, if compared caseless.
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2553
     (i.e. if receiver > aString, ignoring case)"
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2554
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2555
    ^ (self compareCaselessWith:aString) > 0
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2556
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2557
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2558
     'aaa1' > 'aaA2' -> true
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2559
     'aaa1' caselessAfter: 'aaA2' -> false
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2560
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2561
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2562
    "Created: / 29-05-2019 / 10:09:55 / Claus Gittinger"
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2563
!
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2564
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2565
caselessBefore:aString
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2566
    "True if the receiver comes before aString, if compared caseless.
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2567
     (i.e. if receiver < aString, ignoring case)"
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2568
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2569
    ^ (self compareCaselessWith:aString) < 0
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2570
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2571
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2572
     'aaa1' < 'aaA2' -> false
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2573
     'aaa1' caselessBefore: 'aaA2' -> true
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2574
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2575
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2576
    "Created: / 29-05-2019 / 10:09:18 / Claus Gittinger"
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2577
!
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2578
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2579
caselessEqual:aString
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2580
    "True if the receiver has the same characters as aString, if compared caseless.
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2581
     (i.e. if receiver = aString, ignoring case)"
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2582
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2583
    ^ (self sameAs:aString)
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2584
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2585
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2586
     'aaa1' = 'aaA1' -> false
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2587
     'aaa1' caselessEqual: 'aaA1' -> true
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2588
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2589
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2590
    "Created: / 29-05-2019 / 10:10:53 / Claus Gittinger"
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2591
!
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2592
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2593
compareAsVersionNumberWith:aStringOrCollection
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2594
    "Compare the receiver with the argument and return 1 if the receiver is
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2595
     greater, 0 if equal and -1 if less than the argument in a sorted list.
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2596
     Compare as version numbers in the form a.b.c... ."
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2597
23121
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2598
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2599
    ^ self asVersionNumberCollection 
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2600
            compareWith:aStringOrCollection asVersionNumberCollection
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2601
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2602
   "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2603
     self assert:('1' compareAsVersionNumberWith:'2') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2604
     self assert:('2' compareAsVersionNumberWith:'1') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2605
     self assert:('1.1' compareAsVersionNumberWith:'2.1.2') < 0.
23121
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2606
     self assert:('1.1a' compareAsVersionNumberWith:'2.1.2') < 0.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2607
     self assert:('2.1' compareAsVersionNumberWith:'1.2.3') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2608
     self assert:('1' compareAsVersionNumberWith:'1.1') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2609
     self assert:('1.1' compareAsVersionNumberWith:'1') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2610
     self assert:('1.1' compareAsVersionNumberWith:'1.2') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2611
     self assert:('1.10' compareAsVersionNumberWith:'1.2') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2612
     self assert:('1.2.3.4' compareAsVersionNumberWith:'1.2.3.5') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2613
     self assert:('1.2.3.4' compareAsVersionNumberWith:'1.2.3.3') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2614
     self assert:('1.2.3.4' compareAsVersionNumberWith:'1.2.3') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2615
     self assert:('1.2.3.4' compareAsVersionNumberWith:'1.2.3.4') = 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2616
     self assert:('1.2.3.4' compareAsVersionNumberWith:'01.002.03.004') = 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2617
     self assert:('1.2.3.4' compareAsVersionNumberWith:#(1 2 3 4)) = 0.
22325
e9fba9f05c31 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22323
diff changeset
  2618
     self assert:('1.2.3.4' compareAsVersionNumberWith:#('1' 2 3 4)) = 0.
23121
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2619
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2620
     self assert:('1.1' compareAsVersionNumberWith:'1.1a') < 0.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2621
22325
e9fba9f05c31 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22323
diff changeset
  2622
    "
e9fba9f05c31 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22323
diff changeset
  2623
e9fba9f05c31 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22323
diff changeset
  2624
    "Modified: / 25-10-2017 / 11:25:08 / stefan"
23121
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  2625
    "Modified (format): / 20-06-2018 / 19:23:18 / Stefan Vogel"
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2626
!
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2627
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2628
compareCaselessWith:aString
22327
68bf46e35027 #DOCUMENTATION by mawalch
mawalch
parents: 22325
diff changeset
  2629
    "Compare the receiver against the argument, ignoring case.
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2630
     Return 1 if the receiver is greater, 0 if equal and -1 if less than the argument.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2631
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2632
     This comparison is based on the elements ascii code -
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2633
     i.e. national characters are NOT treated specially.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2634
     'foo' compareWith: 'Foo' will return 0"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2635
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2636
    |mySize    "{ Class: SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2637
     otherSize "{ Class: SmallInteger }"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2638
     n         "{ Class: SmallInteger }"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2639
     c1 c2|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2640
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2641
    mySize := self size.
5739
4fd3be7ccc75 oops some relational ops did accept a non-string arg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  2642
    otherSize := aString string size.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2643
    n := mySize min:otherSize.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2644
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2645
    1 to:n do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2646
        c1 := (self at:index) asLowercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2647
        c2 := (aString at:index) asLowercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2648
        c1 > c2 ifTrue:[^ 1].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2649
        c1 < c2 ifTrue:[^ -1].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2650
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2651
    mySize > otherSize ifTrue:[^ 1].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2652
    mySize < otherSize ifTrue:[^ -1].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2653
    ^ 0
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2654
24232
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2655
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2656
     'aaa1' < 'aaA2' -> false
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2657
     'aaa1' compareCaselessWith: 'aaA2' -> -1
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2658
    "
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2659
22327
68bf46e35027 #DOCUMENTATION by mawalch
mawalch
parents: 22325
diff changeset
  2660
    "Modified: / 22-04-1996 / 15:56:07 / cg"
68bf46e35027 #DOCUMENTATION by mawalch
mawalch
parents: 22325
diff changeset
  2661
    "Modified (comment): / 26-10-2017 / 16:01:01 / mawalch"
24232
506ee6a81f82 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24212
diff changeset
  2662
    "Modified (comment): / 29-05-2019 / 10:06:00 / Claus Gittinger"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2663
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2664
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2665
compareCollatingWith:aString
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2666
    "Compare the receiver with the argument and return 1 if the receiver is
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2667
     greater, 0 if equal and -1 if less than the argument in a sorted list.
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2668
     The comparison is language specific, depending on the value of
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2669
     LC_COLLATE, which is in the shell environment."
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2670
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2671
    "TODO not yet defined for unicode"
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2672
    <resource: #todo>
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2673
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2674
    |s|
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2675
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2676
    (s := self string) ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2677
        ^ s compareCollatingWith:aString
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2678
    ].
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2679
    ^ self compareWith:aString
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2680
!
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2681
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2682
compareWith:aString
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2683
    "Compare the receiver with the argument and return 1 if the receiver is
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2684
     greater, 0 if equal and -1 if less than the argument.
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2685
     This comparison is based on the elements' codepoints -
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2686
     i.e. upper/lowercase & national characters are NOT treated specially.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2687
     'foo' compareWith: 'Foo' will return 1.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2688
     while 'foo' sameAs:'Foo' will return true"
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2689
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2690
    |s|
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2691
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2692
    s := self string.
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2693
    s ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2694
        ^ s compareWith:aString string.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2695
    ].
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2696
    ^ super compareWith:aString string.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2697
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2698
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2699
endsWith:aStringOrCharacter
16175
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2700
    "return true, if the receiver ends with something, aStringOrCharacter.
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2701
     If aStringOrCharacter is empty, true is returned"
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2702
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2703
    |s|
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2704
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2705
    (s := self string) ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2706
        ^ s endsWith:aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2707
    ].
21083
3b7b02336cbb #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21030
diff changeset
  2708
    (self size ~~ 0 and:[aStringOrCharacter isCharacter]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2709
        ^ self last = aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2710
    ].
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2711
    ^ super endsWith:aStringOrCharacter
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2712
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2713
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2714
     'hello world' endsWith:'world'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2715
     'hello world' asText allBold endsWith:'world'
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2716
     'hello world' endsWith:''
16175
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2717
     'hello world' asText allBold endsWith:''
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2718
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2719
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2720
    "Modified: 12.5.1996 / 15:49:18 / cg"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2721
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2722
23154
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2723
endsWith:aStringOrCharacter caseSensitive:caseSensitive
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2724
    "return true, if the receiver ends with something, aStringOrCharacter.
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2725
     If aStringOrCharacter is empty, true is returned"
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2726
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2727
    |s|
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2728
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2729
    caseSensitive ifTrue:[^ self endsWith:aStringOrCharacter].
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2730
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2731
    (s := self string) ~~ self ifTrue:[
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2732
        ^ s endsWith:aStringOrCharacter
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2733
    ].
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2734
    (self size ~~ 0 and:[aStringOrCharacter isCharacter]) ifTrue:[
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2735
        ^ self last asLowercase = aStringOrCharacter asLowercase
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2736
    ].
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2737
    ^ self endsWith:aStringOrCharacter using:[:a :b | a asLowercase = b asLowercase].
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2738
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2739
    "
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2740
     'hello World' endsWith:'world' caseSensitive:true
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2741
     'hello World' endsWith:'world' caseSensitive:false
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2742
    "
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2743
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2744
    "Created: / 29-06-2018 / 11:38:57 / Claus Gittinger"
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2745
!
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  2746
23783
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2747
endsWithDigit
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2748
    "Answer whether the receiver's final character represents a digit.  3/11/96 sw"
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2749
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2750
    |len|
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2751
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2752
    ^ (len := self size) ~~ 0 and:[(self at:len) isDigit]
24300
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2753
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2754
     'hello' endsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2755
     '12hello' endsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2756
     'hello12' endsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2757
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2758
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2759
     'hello' startsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2760
     '12hello' startsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2761
     'hello12' startsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2762
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2763
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  2764
    "Modified (comment): / 08-06-2019 / 17:23:38 / Claus Gittinger"
23783
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2765
!
d81aa5b9d246 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23717
diff changeset
  2766
11838
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2767
hammingDistanceTo:aString
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2768
    "return the hamming distance (the number of characters which are different).
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2769
     In information theory, the Hamming distance between two strings of equal length
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2770
     is the number of positions for which the corresponding symbols are different.
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2771
     Put another way, it measures the minimum number of substitutions required to change
11838
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2772
     one into the other, or the number of errors that transformed one string into the other."
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2773
22377
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2774
    |mySize|
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2775
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2776
    mySize := self size.
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2777
    self assert:(aString size == mySize).
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2778
    ^ 1 to:mySize count:[:idx | (self at:idx) ~= (aString at:idx)]
11838
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2779
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2780
    "
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2781
     'roses' hammingDistanceTo:'toned'
22377
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2782
     'roses' hammingDistanceTo:'doses'
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2783
    "
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2784
84a039c64a6b #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22357
diff changeset
  2785
    "Modified (comment): / 24-11-2017 / 08:50:58 / cg"
11838
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2786
!
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2787
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2788
hash
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2789
    "return an integer useful as a hash-key"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2790
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2791
    "/ whenever changing, also care for String>>hash.
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2792
    "/ immediately after any change, execute (maybe in a debugger):
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2793
    "/      Set allSubInstancesDo:[:s | s rehash]
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2794
    ^ self hash_fnv1a
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2795
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2796
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2797
     'a' hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2798
     'a' asUnicode16String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2799
     'a' asUnicode32String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2800
     'aa' hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2801
     'aa' asUnicode16String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2802
     'aa' asUnicode32String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2803
     'ab' hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2804
     'ab' asUnicode16String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2805
     'ab' asUnicode32String hash
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2806
     'ab' hash
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2807
     'ab' asArray hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2808
    "
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2809
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2810
    "
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2811
        |syms ms|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2812
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2813
        syms := Symbol allInstances.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2814
        Transcript show:'syms: '; showCR:syms size.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2815
        Transcript show:'sdbm hashes: '; showCR:(syms collect:[:s| s hash]) asSet size.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2816
        Transcript show:'dragonBook hashes: '; showCR:(syms collect:[:s| s hash_dragonBook]) asSet size.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2817
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2818
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2819
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2820
                syms do:[:each| each hash].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2821
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2822
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2823
        Transcript show:'sdbm hash: '; showCR:ms.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2824
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2825
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2826
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2827
                syms do:[:each| each hash_dragonBook].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2828
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2829
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2830
        Transcript show:'dragonBook: '; showCR:ms.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2831
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2832
        syms := syms collect:[:each| each asUnicode16String].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2833
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2834
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2835
                syms do:[:each| each hash].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2836
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2837
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2838
        Transcript show:'unicode sdbm hash: '; showCR:ms.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2839
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2840
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2841
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2842
                syms do:[:each| each hash_dragonBook].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2843
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2844
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2845
        Transcript show:'unicode dragonBook:'; showCR:ms.
14641
507dd4be1798 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14637
diff changeset
  2846
    "
507dd4be1798 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14637
diff changeset
  2847
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2848
    "Modified: / 26-12-2011 / 14:09:07 / cg"
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2849
!
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2850
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2851
hash_dragonBook
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2852
    "return an integer useful as a hash-key"
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2853
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2854
    |h g|
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2855
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2856
    "/
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2857
    "/ this is the dragon-book algorithm
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2858
    "/
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2859
    h := 0.
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2860
    self reverseDo:[:char |
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2861
"/ Sorry, stc cannot compile this (as of 10.9.2007)
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2862
"/        h := (h bitShift:4) + char asciiValue.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2863
        h := (h bitShift:4).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2864
        h := h + char codePoint.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2865
        h := h bitAnd:16rFFFFFFFF.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2866
        g := (h bitAnd: 16rF0000000).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2867
        g ~~ 0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2868
            h := h bitXor:(g bitShift:-24).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2869
            h := h bitXor:g.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2870
        ].
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2871
    ].
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2872
    "/
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2873
    "/ multiply by large prime to spread values
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2874
    "/ This speeds up Set and Dictionary by a factor of 10!!
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2875
    "/
14137
1eb1b4a3f364 Inherit from UninterpretedBytes instead of ByteArray
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
  2876
    h := h times:31415821.
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2877
    ^ h
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2878
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2879
    "
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2880
     'a' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2881
     'a' asUnicode16String hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2882
     'aa' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2883
     'aa' asUnicode16String hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2884
     'ab' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2885
     'ab' asUnicode16String hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2886
     'ab' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2887
     'ab' asArray hash
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2888
    "
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2889
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2890
    "Created: / 26-12-2011 / 13:46:06 / cg"
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2891
!
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2892
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2893
hash_fnv1a
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2894
    "return an integer useful as a hash-key.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2895
     This method uses the fnv-1a algorithm
19743
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2896
     (which is actually a very good one).
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2897
     Attention: stops when a 0-codepoint is encountered
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2898
                (for compatibility with the hash used by the VM)
19743
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2899
     Also: on 64bit CPUs, only small 4-byte hashvalues are returned,
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2900
                (so hash values are independent from the architecture)"
19743
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2901
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2902
    |h byte|
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2903
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2904
    h := 2166136261.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2905
    self do:[:eachChar |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2906
        byte := eachChar codePoint.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2907
        byte == 0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2908
            "/ stop
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2909
            ^ (h bitXor: (h >> 30)) bitAnd: 16r3FFFFFFF.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2910
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2911
        h := h bitXor:byte.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2912
        h := (h * 16777619) bitAnd:16rFFFFFFFF.
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2913
    ].
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2914
    "/ make sure, it fits into a smallInt
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2915
    h := (h bitXor: (h >> 30)) bitAnd: 16r3FFFFFFF.
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2916
    ^ h
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2917
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2918
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2919
     'abc' hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2920
     'abc' asUnicode16String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2921
     'abc' asUnicode32String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2922
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2923
     'foofooHelloWorld' hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2924
     'foofooHelloWorld' asUnicode16String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2925
     'foofooHelloWorld' asUnicode32String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2926
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2927
     'blablaHelloWorld' hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2928
     'blablaHelloWorld' asUnicode16String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2929
     'blablaHelloWorld' asUnicode32String hash_fnv1a
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2930
    "
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2931
!
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2932
23863
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2933
hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2934
    "return a 64bit integer useful as a hash-key.
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2935
     This method uses the fnv-1a algorithm
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2936
     (which is actually a very good one)."
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2937
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2938
    |h byte|
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2939
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2940
    h := 14695981039346656037.
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2941
    self do:[:eachChar |
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2942
        byte := eachChar codePoint.
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2943
        h := h bitXor:byte.
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2944
        h := (h * 1099511628211) bitAnd:16rFFFFFFFFFFFFFFFF.
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2945
    ].
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2946
    "/ make sure, it fits into 64 bit
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2947
    h := (h bitXor: (h >> 30)) bitAnd: 16r3FFFFFFFFFFFFFFF.
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2948
    ^ h
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2949
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2950
    "
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2951
     'abc' hash_fnv1a_64 
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2952
     'abc' asUnicode16String hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2953
     'abc' asUnicode32String hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2954
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2955
     'foofooHelloWorld' hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2956
     'foofooHelloWorld' asUnicode16String hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2957
     'foofooHelloWorld' asUnicode32String hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2958
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2959
     'blablaHelloWorld' hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2960
     'blablaHelloWorld' asUnicode16String hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2961
     'blablaHelloWorld' asUnicode32String hash_fnv1a_64
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2962
    "
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2963
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2964
    "Created: / 11-03-2019 / 11:47:15 / Claus Gittinger"
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2965
!
b866297924c8 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23791
diff changeset
  2966
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2967
hash_java
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2968
    "return an integer useful as a hash-key.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2969
     This method uses the same algorithm as used in
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2970
     the java virtual machine
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2971
     (which is actually not a very good one)."
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2972
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2973
    |h|
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2974
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2975
    h := 0.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2976
    self do:[:eachChar |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2977
        h := (h * 31) + (eachChar codePoint).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  2978
        h := h bitAnd:16rFFFFFFFF.
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2979
    ].
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2980
    ^ h
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2981
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2982
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2983
     'abc' hash_java
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2984
     'foofooHelloWorld' hash_java
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2985
     'blablaHelloWorld' hash_java
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2986
    "
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2987
!
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2988
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2989
hash_sdbm
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2990
    "return an integer useful as a hash-key.
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2991
     This method implements the sdbm algorithm."
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2992
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2993
    |h|
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2994
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2995
    "/
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2996
    "/ this is the sdbm algorithm
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2997
    "/
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2998
    h := 0.
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2999
    self do:[:char |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3000
        h := (65599 times:h) plus:char codePoint.
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3001
    ].
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3002
    ^ h
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3003
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3004
    "
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3005
     'a' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3006
     'a' asUnicode16String hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3007
     'aa' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3008
     'aa' asUnicode16String hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3009
     'ab' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3010
     'ab' asUnicode16String hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3011
     'ab' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3012
     'ab' asArray hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3013
    "
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3014
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3015
    "
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3016
        |syms ms|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3017
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3018
        syms := Symbol allInstances.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3019
        Transcript show:'syms: '; showCR:syms size.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3020
        Transcript show:'sdbm hashes: '; showCR:(syms collect:[:s| s hash]) asSet size.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3021
        Transcript show:'dragonBook hashes: '; showCR:(syms collect:[:s| s hash_dragonBook]) asSet size.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3022
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3023
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3024
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3025
                syms do:[:each| each hash].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3026
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3027
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3028
        Transcript show:'sdbm hash: '; showCR:ms.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3029
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3030
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3031
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3032
                syms do:[:each| each hash_dragonBook].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3033
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3034
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3035
        Transcript show:'dragonBook: '; showCR:ms.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3036
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3037
        syms := syms collect:[:each| each asUnicode16String].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3038
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3039
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3040
                syms do:[:each| each hash].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3041
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3042
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3043
        Transcript show:'unicode sdbm hash: '; showCR:ms.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3044
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3045
        ms := Time millisecondsToRun:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3046
            10 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3047
                syms do:[:each| each hash_dragonBook].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3048
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3049
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3050
        Transcript show:'unicode dragonBook:'; showCR:ms.
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3051
    "
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3052
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3053
    "Modified: / 26-12-2011 / 14:09:07 / cg"
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3054
!
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  3055
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3056
levenshteinTo:aString
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3057
    "return the levenshtein distance to the argument, aString;
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3058
     this value corresponds to the number of replacements that have to be
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3059
     made to get aString from the receiver.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3060
     See IEEE transactions on Computers 1976 Pg 172 ff."
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3061
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3062
    "
21760
229c605cbbad #OTHER by mawalch
mawalch
parents: 21747
diff changeset
  3063
     in the following, we assume that omiting a character
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3064
     is less of an error than inserting an extra character.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3065
     Therefore the different insertion (i) and deletion (d) values.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3066
        s: substitution weight (4)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3067
        k: keyboard weight (k) (typing a nearby key) - or nil (then use s)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3068
        c: case weight (4)                           - or nil (then use s)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3069
        e: exchange weight (8)                       - or nil (then use s*2)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3070
        i: insertion of extra character weight (2)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3071
        d: delete of a character weight (6)
22157
0578a215a1e0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22137
diff changeset
  3072
0578a215a1e0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22137
diff changeset
  3073
     Notice that the standard levenshtein uses the same weight for insertion and deletion,
0578a215a1e0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22137
diff changeset
  3074
     and is computed by:
0578a215a1e0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22137
diff changeset
  3075
        'flaw' levenshteinTo:'lawn' s:2 k:nil c:nil i:1 d:1
0578a215a1e0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22137
diff changeset
  3076
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3077
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3078
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3079
    ^ StringUtilities
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3080
            levenshteinDistanceFrom:self
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3081
            to:aString
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3082
            s:4 k:4 c:4 e:nil i:2 d:6
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3083
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3084
    "
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3085
     'computer' levenshteinTo:'computer'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3086
     'cOmputer' levenshteinTo:'computer'
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3087
     'cOmpuTer' levenshteinTo:'computer'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3088
     'cimputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3089
     'cumputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3090
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3091
     'cmputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3092
     'coomputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3093
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3094
     'ocmprt' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3095
     'computer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3096
     'ocmputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3097
     'cmputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3098
     'computer' levenshteinTo:'cmputer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3099
     'Computer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3100
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3101
     'compiter' levenshteinTo:'computer'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3102
     'compoter' levenshteinTo:'computer'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3103
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3104
     'comptuer' levenshteinTo:'computer'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3105
    "
21760
229c605cbbad #OTHER by mawalch
mawalch
parents: 21747
diff changeset
  3106
229c605cbbad #OTHER by mawalch
mawalch
parents: 21747
diff changeset
  3107
    "Modified (comment): / 17-05-2017 / 16:15:41 / mawalch"
22157
0578a215a1e0 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22137
diff changeset
  3108
    "Modified (comment): / 02-08-2017 / 17:13:04 / cg"
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3109
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3110
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3111
levenshteinTo:aString s:substWeight k:kbdTypoWeight c:caseWeight i:insrtWeight d:deleteWeight
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3112
    "parametrized levenshtein.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3113
     return the levenshtein distance to the argument, aString;
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3114
     this value corrensponds to the number of replacements that have to be
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3115
     made to get aString from the receiver.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3116
     The arguments are the costs for
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3117
        s:substitution,
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3118
        k:keyboard type (substitution),
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3119
        c:case-change,
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3120
        i:insertion
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3121
        d:deletion
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3122
     of a character.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3123
     See IEEE transactions on Computers 1976 Pg 172 ff"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3124
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3125
    ^ StringUtilities
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3126
            levenshteinDistanceFrom:self
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3127
            to:aString
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3128
            s:substWeight k:kbdTypoWeight c:caseWeight e:nil i:insrtWeight d:deleteWeight
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3129
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3130
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3131
sameAs:aString
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3132
    "Compare the receiver with the argument like =, but ignore case differences.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3133
     Return true or false."
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3134
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3135
    |mySize "{ Class: SmallInteger }"
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3136
     otherSize c1 c2|
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3137
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3138
    self == aString ifTrue:[^ true].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3139
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3140
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3141
    otherSize := aString string size.
18884
6b5030151c08 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18771
diff changeset
  3142
    mySize ~~ otherSize ifTrue:[^ false].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3143
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3144
    1 to:mySize do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3145
        c1 := self at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3146
        c2 := aString at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3147
        c1 ~~ c2 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3148
            (c1 sameAs:c2) ifFalse:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3149
        ]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3150
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3151
    ^ true
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3152
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3153
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3154
     'foo' sameAs: 'Foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3155
     'foo' sameAs: 'bar'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3156
     'foo' sameAs: 'foo'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3157
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3158
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3159
    "Modified: 22.4.1996 / 15:56:17 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3160
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3161
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3162
sameAs:aString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3163
    "Compare the receiver with the argument.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3164
     If caseSensitive is false, this is the same as #sameAs:,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3165
     if false, this is the same as #=."
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3166
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3167
    caseSensitive ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3168
        ^ self sameAs:aString
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3169
    ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3170
    ^ self = aString
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3171
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3172
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3173
     'foo' sameAs:'Foo' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3174
     'foo' sameAs:'foo' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3175
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3176
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3177
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3178
sameAs:aString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  3179
    <resource: #obsolete>
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3180
    "Compare the receiver with the argument.
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3181
     If ignoreCase is true, this is the same as #sameAs:,
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3182
     if false, this is the same as #=."
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3183
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3184
    ignoreCase ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3185
        ^ self sameAs:aString
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3186
    ].
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3187
    ^ self = aString
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3188
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3189
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3190
     'foo' sameAs:'Foo' ignoreCase:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3191
     'foo' sameAs:'foo' ignoreCase:true
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3192
    "
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3193
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3194
!
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  3195
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3196
sameCharacters:aString
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3197
    "count & return the number of characters which are the same
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3198
     (ignoring case and emphasis) in the receiver and the argument, aString."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3199
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3200
    |n "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3201
     c1 c2 cnt|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3202
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3203
    n := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3204
    n := n min:(aString string size).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3205
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3206
    cnt := 0.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3207
    1 to:n do:[:index |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3208
        c1 := self at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3209
        c2 := aString at:index.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3210
        ((c1 == c2)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3211
        or:[c1 asLowercase = c2 asLowercase]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3212
            cnt := cnt + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3213
        ]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3214
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3215
    ^ cnt
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3216
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3217
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3218
     'foobarbaz' sameCharacters: 'foo'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3219
     'foobarbaz' sameCharacters: 'Foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3220
     'foobarbaz' sameCharacters: 'baz'
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3221
    "
5510
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3222
!
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3223
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3224
sameEmphasisAs:aStringOrText
17215
0906efa5645d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17213
diff changeset
  3225
    "compare the receiver's and the argument's emphasis"
5510
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3226
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3227
    ^ self emphasis = aStringOrText emphasis
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3228
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3229
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3230
     'hello' asText sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3231
     'hello' asText sameEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3232
     'hello' asText allBold sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3233
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allBold
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3234
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allItalic
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3235
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3236
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3237
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  3238
sameStringAndEmphasisAs:aStringOrText
5739
4fd3be7ccc75 oops some relational ops did accept a non-string arg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  3239
    "compare both emphasis and string of the receiver and the argument"
5510
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3240
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3241
    aStringOrText isString ifFalse:[^ false].
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3242
    (self string = aStringOrText string) ifFalse:[^ false].
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3243
    self hasChangeOfEmphasis = aStringOrText hasChangeOfEmphasis ifFalse:[^ false].
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3244
    ^ self emphasis = aStringOrText emphasis
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3245
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3246
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3247
     'hello' asText sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3248
     'hello' asText sameEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3249
     'hello' asText allBold sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3250
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3251
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allItalic
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3252
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3253
     'hello' sameEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3254
     'hello' sameEmphasisAs: 'hello' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3255
     'hello' sameEmphasisAs: 'fooba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3256
     'hello' sameEmphasisAs: 'fooba' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3257
     'hello' sameEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3258
     'hello' sameEmphasisAs: 'fooba' asText allItalic
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3259
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3260
     'hello' asText sameStringAndEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3261
     'hello' asText sameStringAndEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3262
     'hello' asText allBold sameStringAndEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3263
     'hello' asText allBold sameStringAndEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3264
     'hello' asText allBold sameStringAndEmphasisAs: 'fooba' asText allItalic
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3265
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3266
     'hello' sameStringAndEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3267
     'hello' sameStringAndEmphasisAs: 'hello' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3268
     'hello' sameStringAndEmphasisAs: 'fooba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3269
     'hello' sameStringAndEmphasisAs: 'fooba' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3270
     'hello' sameStringAndEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3271
     'hello' sameStringAndEmphasisAs: 'fooba' asText allItalic
5510
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  3272
    "
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3273
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3274
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3275
spellAgainst: aString
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3276
    "return an integer between 0 and 100 indicating how similar
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3277
     the argument is to the receiver.  No case conversion is done.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3278
     This algorithm is much simpler (but also less exact) than the
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3279
     levenshtein distance. Experiment which is better for your
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3280
     application."
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3281
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3282
    | i1     "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3283
      i2     "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3284
      next1  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3285
      next2  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3286
      size1  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3287
      size2  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3288
      score  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3289
      maxLen "{ Class: SmallInteger }" |
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3290
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3291
    size1 := self size.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3292
    size2 := aString size.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3293
    maxLen := size1 max:size2.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3294
    score := 0.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3295
    i1 := i2 := 1.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3296
    [i1 <= size1 and: [i2 <= size2]] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3297
        next1 := i1 + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3298
        next2 := i2 + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3299
        (self at:i1) == (aString at:i2) ifTrue: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3300
            score := score+1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3301
            i1 := next1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3302
            i2 := next2
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3303
        ] ifFalse: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3304
            (i2 < size2 and: [(self at:i1) == (aString at:next2)]) ifTrue: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3305
                i2 := next2
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3306
            ] ifFalse: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3307
                (i1 < size1 and: [(self at:next1) == (aString at:i2)]) ifTrue: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3308
                    i1 := next1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3309
                ] ifFalse: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3310
                    i1 := next1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3311
                    i2 := next2
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3312
                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3313
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3314
        ]
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3315
    ].
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3316
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3317
    score == maxLen ifTrue: [^ 100].
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3318
    ^ 100 * score // maxLen
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3319
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3320
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3321
     'Smalltalk' spellAgainst: 'Smalltlak'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3322
     'Smalltalk' spellAgainst: 'smalltlak'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3323
     'Smalltalk' spellAgainst: 'smalltalk'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3324
     'Smalltalk' spellAgainst: 'smalltlk'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3325
     'Smalltalk' spellAgainst: 'Smalltolk'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3326
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3327
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3328
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3329
startsWith:aStringOrCharacter
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3330
    "return true, if the receiver starts with something, aStringOrCharacter.
17371
cbb00370b456 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17367
diff changeset
  3331
     If the argument is empty, true is returned.
cbb00370b456 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17367
diff changeset
  3332
     Notice, that this is similar to, but slightly different from VW's and Squeak's beginsWith:,
cbb00370b456 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17367
diff changeset
  3333
     which are both inconsistent w.r.t. an empty argument."
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3334
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3335
    |s|
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3336
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3337
    aStringOrCharacter isCharacter ifTrue:[
23548
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3338
        ^ (self size ~~ 0) and:[(self at:1) = aStringOrCharacter]
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3339
    ].
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3340
    (s := self string) ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3341
        ^ s startsWith:aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3342
    ].
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3343
    ^ super startsWith:aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3344
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3345
    "
17364
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3346
     'abcde' startsWith:#($a $b $c)
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3347
     'abcde' startsWith:'abc'
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3348
     'abcd' startsWith:'abcde'
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3349
     'abcde' startsWith:'abd'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3350
     'hello world' startsWith:'hello'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3351
     'hello world' asText allBold startsWith:'hello'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3352
     'hello world' asText allBold startsWith:''
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3353
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3354
23154
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3355
    "Created: / 12-05-1996 / 15:46:40 / cg"
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3356
    "Modified: / 29-06-2018 / 11:27:08 / Claus Gittinger"
23548
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3357
    "Modified (format): / 26-11-2018 / 14:15:31 / Stefan Vogel"
23154
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3358
!
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3359
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3360
startsWith:aStringOrCharacter caseSensitive:caseSensitive
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3361
    "return true, if the receiver starts with something, aStringOrCharacter.
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3362
     If the argument is empty, true is returned.
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3363
     Notice, that this is similar to, but slightly different from VW's and Squeak's beginsWith:,
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3364
     which are both inconsistent w.r.t. an empty argument."
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3365
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3366
    |s|
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3367
23548
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3368
    caseSensitive ifTrue:[
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3369
        ^ self startsWith:aStringOrCharacter
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3370
    ].
23154
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3371
    aStringOrCharacter isCharacter ifTrue:[
23548
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3372
        self size == 0 ifTrue:[
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3373
            ^ false.
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3374
        ].
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3375
        s := self at:1.
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3376
        ^ s == aStringOrCharacter or:[s asLowercase = aStringOrCharacter asLowercase]
23154
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3377
    ].
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3378
    (s := self string) ~~ self ifTrue:[
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3379
        ^ s startsWith:aStringOrCharacter caseSensitive:caseSensitive
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3380
    ].
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3381
    ^ self startsWith:aStringOrCharacter using:[:a :b | a asLowercase = b asLowercase].
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3382
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3383
    "
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3384
     'aBCde' startsWith:'abc' caseSensitive:true
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3385
     'aBCde' startsWith:'abc' caseSensitive:false
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3386
    "
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3387
57acd331a79a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23121
diff changeset
  3388
    "Created: / 29-06-2018 / 11:27:04 / Claus Gittinger"
23548
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  3389
    "Modified: / 26-11-2018 / 14:18:43 / Stefan Vogel"
24300
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3390
!
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3391
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3392
startsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3393
    "Answer whether the receiver's first character represents a digit.  3/11/96 sw"
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3394
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3395
    |len|
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3396
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3397
    ^ (len := self size) ~~ 0 and:[(self at:1) isDigit]
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3398
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3399
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3400
     'hello' startsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3401
     '12hello' startsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3402
     'hello12' startsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3403
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3404
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3405
     'hello' endsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3406
     '12hello' endsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3407
     'hello12' endsWithDigit
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3408
    "
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3409
9d2d154ca84b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24254
diff changeset
  3410
    "Created: / 08-06-2019 / 17:22:13 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3411
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3412
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3413
!CharacterArray methodsFor:'converting'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3414
11881
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3415
asAsciiZ
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3416
    "if the receiver does not end with a 0-valued character, return a copy of it,
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3417
     with an additional 0-character. Otherwise return the receiver. This is sometimes
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3418
     needed when a string has to be passed to C, which needs 0-terminated strings.
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3419
     Notice, that all singleByte strings are already 0-terminated in ST/X, whereas wide
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3420
     strings are not."
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3421
12658
2e9c209be0cc changed: #asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 12615
diff changeset
  3422
    (self notEmpty and:[self last codePoint == 0]) ifTrue:[^ self ].
11881
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3423
    ^ self copyWith:(Character value:0).
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3424
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3425
    "
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3426
     'abc' asAsciiZ
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3427
     'abc' asWideString asAsciiZ
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3428
    "
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3429
!
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3430
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3431
asByteArray
15936
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3432
    "depending on the size of the characters in the receiver,
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3433
     return a byteArray containing single-, double- or even 4-bytewise values.
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3434
     The size of the returned byteArray will be the strings size multiplied by the
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3435
     size required for the largest character.
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3436
     Attention: The bytes are in native byte order.
21745
d22c95cc558d #OTHER by mawalch
mawalch
parents: 21675
diff changeset
  3437
     Caveat: better use utf8Encoded, to get reproducible results"
15936
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3438
14555
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3439
    |bytes sz bytesPerCharacter idx str|
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3440
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3441
    str := self string.
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3442
    str ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3443
        "/ for text and other wrappers
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3444
        ^ str asByteArray
13611
ba8c7372218a variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 13524
diff changeset
  3445
    ].
ba8c7372218a variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 13524
diff changeset
  3446
ba8c7372218a variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 13524
diff changeset
  3447
    "/ for real strings, a fallback
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3448
    sz := self size.
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  3449
    bytesPerCharacter := self bytesPerCharacter.
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3450
    bytes := ByteArray new:(sz * bytesPerCharacter).
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3451
    idx := 1.
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3452
    self do:[:char |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3453
        |code|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3454
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3455
        code := char codePoint.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3456
        bytesPerCharacter == 2 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3457
            bytes unsignedInt16At:idx put:code
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3458
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3459
            bytesPerCharacter == 4 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3460
                bytes unsignedInt32At:idx put:code
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3461
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3462
                bytes at:idx put:code
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3463
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3464
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3465
        idx := idx + bytesPerCharacter.
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3466
    ].
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3467
    ^ bytes
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3468
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3469
    "Created: / 27-07-2011 / 00:56:17 / cg"
21745
d22c95cc558d #OTHER by mawalch
mawalch
parents: 21675
diff changeset
  3470
    "Modified (comment): / 11-05-2017 / 09:21:57 / mawalch"
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3471
!
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3472
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3473
asByteArrayMSB:msb
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3474
    "depending on the size of the characters in the receiver,
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3475
     return a byteArray containing single-, double- or even 4-bytewise values.
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3476
     The size of the returned byteArray will be the strings size multiplied by the
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3477
     size required for the largest character.
21745
d22c95cc558d #OTHER by mawalch
mawalch
parents: 21675
diff changeset
  3478
     Caveat: better use utf8Encoded, to get reproducible results"
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3479
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3480
    |ba|
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3481
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3482
    ba := self asByteArray. "/ native order
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3483
    UninterpretedBytes isBigEndian ~~ msb ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3484
        ba swapBytes
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3485
    ].
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3486
    ^ ba
21745
d22c95cc558d #OTHER by mawalch
mawalch
parents: 21675
diff changeset
  3487
d22c95cc558d #OTHER by mawalch
mawalch
parents: 21675
diff changeset
  3488
    "Modified (comment): / 11-05-2017 / 09:22:01 / mawalch"
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3489
!
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3490
20480
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3491
asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3492
    "return a Filename with pathname taken from the receiver.
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3493
     The filename is canonicalized, meaning that it cares for trailing directory separators,
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3494
     '.' components etc."
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3495
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3496
    ^ self asFilename asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3497
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3498
    "on windows:
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3499
     'c:\foo\bar' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3500
     'c:\foo\bar\' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3501
     'c:\foo\bar\..\baz' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3502
     'c:\foo\bar\..\baz\.' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3503
     'c:\foo\bar' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3504
     'c:\foo\bar\' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3505
     'c:\foo\bar\..\baz' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3506
     'c:\foo\bar\..\baz\.' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3507
    
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3508
    on unix:
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3509
     '/foo/bar' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3510
     '/foo/bar/' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3511
     '/foo/bar/../baz' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3512
     '/foo/bar/../baz/.' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3513
     '/foo/bar' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3514
     '/foo/bar/' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3515
     '/foo/bar/../baz' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3516
     '/foo/bar/../baz/.' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3517
    "
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3518
!
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3519
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3520
asCollectionOfLines
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3521
    "return a collection containing the lines (separated by cr) of the receiver. 
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3522
     If multiple cr's occur in a row, the result will contain empty strings.
14456
d7c3e67647f1 comment/format in: #asCollectionOfLines
Claus Gittinger <cg@exept.de>
parents: 14455
diff changeset
  3523
     If the string ends with a cr, an empty line will be found as last element of the resulting collection.
d7c3e67647f1 comment/format in: #asCollectionOfLines
Claus Gittinger <cg@exept.de>
parents: 14455
diff changeset
  3524
     See also #asCollectionOfLinesWithReturn
d7c3e67647f1 comment/format in: #asCollectionOfLines
Claus Gittinger <cg@exept.de>
parents: 14455
diff changeset
  3525
     (would have rather changed this method instead of adding another one, but a lot of code already uses
d7c3e67647f1 comment/format in: #asCollectionOfLines
Claus Gittinger <cg@exept.de>
parents: 14455
diff changeset
  3526
      this method and we did not want to risk any incompatibilities)"
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3527
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3528
    ^ self asCollectionOfSubstringsSeparatedBy:Character cr.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3529
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3530
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3531
     '1 one\2 two\3 three\4 four\5 five' withCRs asCollectionOfLines
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3532
     '1 one\\\\2 two\3 three' withCRs asCollectionOfLines
20182
f8625bd2a98c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20160
diff changeset
  3533
f8625bd2a98c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20160
diff changeset
  3534
     ('foo \r\nbar\nbaz\t\r\n\r\nbla' printf:#())
f8625bd2a98c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20160
diff changeset
  3535
        asCollectionOfLines collect:[:l | (l endsWith:Character return) ifTrue:[l copyButLast:1] ifFalse:l]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3536
    "
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3537
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3538
    "Modified (comment): / 03-07-2018 / 10:59:36 / Claus Gittinger"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3539
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3540
24535
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3541
asCollectionOfLinesDo:aBlock
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3542
    "evaluate aBlock for each line (separated by cr) of the receiver.
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3543
     Returns the number of lines (i.e. the number of invocations of aBlock).
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3544
     This is similar to 'asCollectionOfLines do:...' or 'asStringCollection do:...'
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3545
     but avoids the creation of a temporary collection."
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3546
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3547
    |count  "{ Class:SmallInteger }"
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3548
     start  "{ Class:SmallInteger }"
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3549
     stop   "{ Class:SmallInteger }"
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3550
     mySize "{ Class:SmallInteger }"|
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3551
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3552
    count := 0.
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3553
    start := 1.
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3554
    mySize := self size.
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3555
    [start <= mySize] whileTrue:[
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3556
        stop := self indexOf:Character cr startingAt:start.
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3557
        stop == 0 ifTrue:[
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3558
            aBlock value:(self copyFrom:start to:mySize).
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3559
            ^ count + 1
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3560
        ].
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3561
        aBlock value:(self copyFrom:start to:(stop - 1)).
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3562
        start := stop+1.
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3563
        count := count + 1
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3564
    ].
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3565
    ^ count
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3566
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3567
    "
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3568
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3569
     c'hello\nworld\nisnt\nthis\n\nnice' asCollectionOfLinesDo:[:l | Transcript showCR:l]
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3570
     c'hello\nworld\nisnt\nthis\n\nnice' asStringCollection do:[:l | Transcript showCR:l]
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3571
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3572
     c'hello\nworld\nisnt\nthis\n\nnice\n' asCollectionOfLinesDo:[:l | Transcript showCR:l]
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3573
     c'hello\nworld\nisnt\nthis\n\nnice\n' asStringCollection do:[:l | Transcript showCR:l]
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3574
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3575
     c'hello\nworld\nisnt\nthis\n\nnice' asCollectionOfWordsDo:#transcribeCR
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3576
     '    hello\n    world\n   isnt\n   this\n   nice\n  ' asCollectionOfLinesDo:#transcribeCR
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3577
     'hello' asCollectionOfLinesDo:#transcribeCR
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3578
     '' asCollectionOfLinesDo:#transcribeCR
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3579
     '      ' asCollectionOfLinesDo:#transcribeCR
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3580
    "
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3581
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3582
    "Modified (comment): / 03-02-2019 / 13:08:15 / Claus Gittinger"
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3583
!
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3584
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3585
asCollectionOfLinesWithReturn
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3586
    "return a collection containing the lines (separated by cr) of the receiver. 
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3587
     If multiple cr's occur in a row, the result will contain empty strings."
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3588
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3589
    |lines|
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3590
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3591
    lines := self asCollectionOfSubstringsSeparatedBy:Character cr.
18194
bec89cec5d13 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18181
diff changeset
  3592
    (lines notEmpty and:[lines last isEmpty]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3593
        ^ lines copyButLast:1
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3594
    ].
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3595
    ^ lines
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3596
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3597
    "
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3598
     '1\2\3' withCRs asCollectionOfLines
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3599
     '1\2\3\' withCRs asCollectionOfLines
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3600
     '1\2\3' withCRs asCollectionOfLinesWithReturn
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3601
     '1\2\3\' withCRs asCollectionOfLinesWithReturn
18194
bec89cec5d13 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18181
diff changeset
  3602
     '' withCRs asCollectionOfLinesWithReturn
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3603
    "
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3604
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3605
    "Modified (comment): / 03-07-2018 / 10:59:47 / Claus Gittinger"
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3606
!
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3607
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3608
asCollectionOfSubstringsSeparatedBy:aCharacter
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3609
    "return a collection containing substrings (separated by aCharacter) of the receiver.
15740
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3610
     If aCharacter occurs multiple times in a row, the result will contain empty strings.
23717
a95ec31c8d97 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23701
diff changeset
  3611
     If the receiver starts with aCharacter, an empty string with be the first result element.
a95ec31c8d97 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23701
diff changeset
  3612
     If the receiver ends with aCharacter, NO empty string with be the last result element."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3613
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3614
    ^ self asCollectionOfSubCollectionsSeparatedBy:aCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3615
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3616
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3617
     '1 one:2 two:3 three:4 four:5 five' asCollectionOfSubstringsSeparatedBy:$:
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3618
     '1 one:2 two:3 three:4 four:5 five:' asCollectionOfSubstringsSeparatedBy:$:
15740
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3619
     '1 one 2 two 3 three 4 four 5 five' asCollectionOfSubstringsSeparatedBy:Character space
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3620
    "
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3621
23717
a95ec31c8d97 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23701
diff changeset
  3622
    "Modified (comment): / 11-02-2019 / 23:54:20 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3623
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3624
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3625
asCollectionOfSubstringsSeparatedBy:aCharacter exceptIn:ch
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3626
    "return a collection containing the substrings (separated by aCharacter) of the receiver. 
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3627
     If aCharacter occurs multiple times in a row, the result will contain empty strings.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3628
     The separation is not done, inside a matching pair of ch-substrings.
15740
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3629
     Can be used to tokenize csv-like strings, which may or may not be enclosed in quotes."
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3630
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3631
    |lines myClass except i c
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3632
     startIndex    "{ Class:SmallInteger }"
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3633
     stopIndex     "{ Class:SmallInteger }" |
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3634
11905
cbc2191cfe2d return stringCollections from asCollectionOfXXX
Claus Gittinger <cg@exept.de>
parents: 11904
diff changeset
  3635
    lines := StringCollection new.
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3636
    myClass := self species.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3637
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3638
    startIndex := 1.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3639
    except := false.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3640
    [
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3641
        i := startIndex-1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3642
        [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3643
            i := i+1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3644
            c := self at:i.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3645
            c = ch ifTrue:[ except := except not. ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3646
            i < self size and:[except or:[c ~= aCharacter]]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3647
        ] whileTrue.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3648
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3649
        c = aCharacter ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3650
            stopIndex := i -1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3651
        ] ifFalse: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3652
            stopIndex := i.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3653
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3654
        (stopIndex < startIndex) ifTrue: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3655
            lines add:(myClass new:0)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3656
        ] ifFalse: [
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3657
            lines add:(self copyFrom:startIndex to:stopIndex)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3658
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3659
        startIndex := stopIndex + 2.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3660
        startIndex <= self size
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3661
    ] whileTrue.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3662
    ^ lines
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3663
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3664
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3665
     'asd''f;d''dd;s' asCollectionOfSubstringsSeparatedBy:$; exceptIn:$'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3666
    "
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3667
    "/ 'asd "hello bla" foo "bla bla" bar' asCollectionOfSubstringsSeparatedBy:$  exceptIn:$"
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3668
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3669
    "Modified (comment): / 03-07-2018 / 11:00:02 / Claus Gittinger"
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3670
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3671
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3672
asCollectionOfSubstringsSeparatedBy:aFieldSeparatorString textSeparator:aTextSeparatorOrNil
13343
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3673
    "return a collection containing the words (separated by aFieldSeparatorString) of the receiver.
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3674
     Individual words might be enclosed in aTextSeparator characters, in case they contain blanks or fieldSeparators.
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3675
     Typically used for CSV line parsing, with a $; as aFieldSeparator and $'' (dquote) as textSeparator."
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3676
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3677
    |aTextSeparatorChar items scanningWord inStream element lastIsFieldSeparator sz|
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3678
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3679
    aTextSeparatorOrNil isNil ifTrue:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3680
        ^ self asCollectionOfSubstringsSeparatedByAll: aFieldSeparatorString
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3681
    ].
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3682
    sz := aTextSeparatorOrNil size.
24747
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3683
    sz == 0 ifTrue:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3684
        aTextSeparatorChar := aTextSeparatorOrNil
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3685
    ] ifFalse:[
24747
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3686
        sz == 1 ifTrue:[
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3687
            "this is a String. Fetch the first character - compatibility to older expecco libs"
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3688
            aTextSeparatorChar := aTextSeparatorOrNil first.
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3689
        ] ifFalse:[
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3690
            self error:'textSeparatorSize > 1'.
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3691
        ]
fcc36abd6498 #TUNING by exept
Claus Gittinger <cg@exept.de>
parents: 24717
diff changeset
  3692
    ].
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3693
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3694
    items := OrderedCollection new.
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3695
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3696
    inStream := ReadStream on:self.
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  3697
    [
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3698
        inStream skipSeparators.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3699
        inStream atEnd
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3700
    ] whileFalse:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3701
        lastIsFieldSeparator := false.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3702
        inStream peek == aTextSeparatorChar ifTrue:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3703
            inStream next.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3704
            element := ''.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3705
            scanningWord := true.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3706
            [ scanningWord and:[inStream atEnd not] ] whileTrue:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3707
                element := element , (inStream upTo:aTextSeparatorChar).
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3708
                (inStream peek == aTextSeparatorChar) ifTrue:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3709
                    element := element , aTextSeparatorChar .
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3710
                    inStream next.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3711
                ] ifFalse:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3712
                    scanningWord := false.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3713
                ].
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3714
            ].
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3715
            inStream upToAll_positionBefore:aFieldSeparatorString.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3716
        ] ifFalse:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3717
            element := inStream upToAll_positionBefore:aFieldSeparatorString
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3718
        ].
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3719
        items add:element.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3720
        lastIsFieldSeparator := (inStream skipThroughAll:aFieldSeparatorString) notNil.
13343
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3721
    ].
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3722
    lastIsFieldSeparator ifTrue:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3723
        "empty element at the end of the line"
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3724
        items add:''.
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3725
    ].
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3726
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3727
    ^ items
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3728
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3729
    "
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3730
     self assert:(('#First#, #Second,SecondAdd#, #Third#' asCollectionOfSubstringsSeparatedBy:',' textSeparator: $#)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3731
                  sameContentsAs:#('First' 'Second,SecondAdd' 'Third')).
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3732
     self assert:(('#Fir##st#, #Second,SecondAdd#, #Third#' asCollectionOfSubstringsSeparatedBy:',' textSeparator: $#)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3733
                  sameContentsAs:#('Fir#st' 'Second,SecondAdd' 'Third')).
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3734
     self assert:(('#Fir##st#, Second,SecondAdd, #Third#' asCollectionOfSubstringsSeparatedBy:',' textSeparator: $#)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3735
                  sameContentsAs:#('Fir#st' 'Second' 'SecondAdd' 'Third')).
13343
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3736
     self assert:(('First,Second,Third,,' asCollectionOfSubstringsSeparatedBy:',' textSeparator:nil)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3737
                   sameContentsAs:#('First' 'Second' 'Third' '' '')).
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3738
     self assert:(('First,Second,Third,,' asCollectionOfSubstringsSeparatedBy:',' textSeparator:'#')
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3739
                   sameContentsAs:#('First' 'Second' 'Third' '' '')).
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3740
    "
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3741
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3742
    "Modified: / 07-04-2011 / 13:23:19 / cg"
10501
999589445aa7 add new method for splitting a csv string into csv elements
ab
parents: 10437
diff changeset
  3743
!
999589445aa7 add new method for splitting a csv string into csv elements
ab
parents: 10437
diff changeset
  3744
7339
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3745
asCollectionOfSubstringsSeparatedByAll:aSeparatorString
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3746
    "return a collection containing the lines (separated by aSeparatorString) of the receiver. 
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3747
     If aSeparatorString occurs multiple times in a row, 
7339
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3748
     the result will contain empty strings."
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3749
8852
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3750
    ^ self asCollectionOfSubCollectionsSeparatedByAll:aSeparatorString
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3751
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3752
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3753
     '1::2::3::4::5::' asCollectionOfSubstringsSeparatedByAll:'::'
7339
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3754
    "
23187
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3755
0f22aaefc623 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23155
diff changeset
  3756
    "Modified (comment): / 03-07-2018 / 11:00:16 / Claus Gittinger"
7339
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3757
!
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3758
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3759
asCollectionOfSubstringsSeparatedByAny:aCollectionOfSeparators
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3760
    "return a collection containing the words (separated by any character
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3761
     from aCollectionOfSeparators) of the receiver.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3762
     This allows breaking up strings using any character as separator."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3763
8852
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3764
    ^ self asCollectionOfSubCollectionsSeparatedByAny:aCollectionOfSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3765
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3766
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3767
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:#($:)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3768
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:':'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3769
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:(Array with:$: with:Character space)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3770
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:': '
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3771
     'h1e2l3l4o' asCollectionOfSubstringsSeparatedByAny:($1 to: $9)
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3772
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3773
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3774
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3775
asCollectionOfWords
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3776
    "return a collection containing the words (separated by whitespace)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3777
     of the receiver. Multiple occurrences of whitespace characters will
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  3778
     be treated like one - i.e. whitespace is skipped.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  3779
     (sigh: it is called #'subStrings' in V'Age, and #'substrings' in Squeak) "
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3780
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3781
    |words|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3782
11905
cbc2191cfe2d return stringCollections from asCollectionOfXXX
Claus Gittinger <cg@exept.de>
parents: 11904
diff changeset
  3783
    words := StringCollection new.
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3784
    self asCollectionOfWordsDo:[:w | words add:w].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3785
    ^ words
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3786
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3787
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3788
     'hello world isnt this nice' asCollectionOfWords
23660
9e1d9ddc5934 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23617
diff changeset
  3789
     'hello world isnt this nice' asCollectionOfWordsDo:#transcribeCR
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3790
     '    hello    world   isnt   this   nice  ' asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3791
     'hello' asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3792
     '' asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3793
     '      ' asCollectionOfWords
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3794
     ' foo bar__baz__bla__ bar ' asCollectionOfWords
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3795
     ' foo __bar__baz__bla__ bar ' asCollectionOfWords
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3796
    "
23660
9e1d9ddc5934 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23617
diff changeset
  3797
9e1d9ddc5934 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23617
diff changeset
  3798
    "Modified (comment): / 03-02-2019 / 13:07:57 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3799
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3800
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3801
asCollectionOfWordsDo:aBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3802
    "evaluate aBlock for each word (separated by whitespace) of the receiver.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3803
     Multiple occurrences of whitespace characters will be treated like one
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3804
     - i.e. whitespace is skipped.
24535
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3805
     Returns the number of words (i.e. the number of invocations of aBlock).
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3806
     This is the same as 'asCollectionOfWords do:...' but avoids the creation of
60bf2e642900 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24524
diff changeset
  3807
     a temporary collection."
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3808
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3809
    |count  "{ Class:SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3810
     start  "{ Class:SmallInteger }"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3811
     stop   "{ Class:SmallInteger }"
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3812
     mySize "{ Class:SmallInteger }"|
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3813
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3814
    count := 0.
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3815
    start := 1.
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3816
    mySize := self size.
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3817
    [start <= mySize] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3818
        start := self indexOfNonSeparatorStartingAt:start.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3819
        start == 0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3820
            ^ count
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3821
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3822
        stop := self indexOfSeparatorStartingAt:start.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3823
        stop == 0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3824
            aBlock value:(self copyFrom:start to:mySize).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3825
            ^ count + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3826
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3827
        aBlock value:(self copyFrom:start to:(stop - 1)).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3828
        start := stop.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3829
        count := count + 1
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3830
    ].
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3831
    ^ count
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3832
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3833
    "
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3834
     'hello world isnt this nice' asCollectionOfWordsDo:[:w | Transcript showCR:w]
23660
9e1d9ddc5934 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23617
diff changeset
  3835
     'hello world isnt this nice' asCollectionOfWordsDo:#transcribeCR
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3836
     '    hello    world   isnt   this   nice  ' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3837
     'hello' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3838
     '' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3839
     '      ' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3840
    "
23660
9e1d9ddc5934 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23617
diff changeset
  3841
9e1d9ddc5934 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23617
diff changeset
  3842
    "Modified (comment): / 03-02-2019 / 13:08:15 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3843
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3844
23971
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3845
asDenseUnicodeString
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3846
    "return the receiver as single-byte, double byte or 4-byte unicode string,
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3847
     depending on the number of bits required to hold all characters in myself.
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3848
     Use this to extract non-wide parts from a wide string,
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3849
     i.e. after a substring has been copied out of a wide string"
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3850
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3851
    |nb|
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3852
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3853
    nb := self bytesPerCharacterNeeded.
24034
ba4c42171801 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24033
diff changeset
  3854
    (nb ~~ self bytesPerCharacter) ifTrue:[
ba4c42171801 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24033
diff changeset
  3855
        nb == 1 ifTrue:[
ba4c42171801 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24033
diff changeset
  3856
            ^ self asSingleByteString
ba4c42171801 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24033
diff changeset
  3857
        ].    
ba4c42171801 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24033
diff changeset
  3858
        nb == 2 ifTrue:[
ba4c42171801 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24033
diff changeset
  3859
            ^ self asUnicode16String
23971
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3860
        ].
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3861
    ].
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3862
    ^ self
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3863
    
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3864
    "
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3865
     'abc' asUnicode16String asDenseUnicodeString
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3866
     'abc' asUnicode32String asDenseUnicodeString
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3867
     ('abc',(Character value:16r165)) asDenseUnicodeString
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3868
     ('abc',(Character value:16r165)) asUnicode32String asDenseUnicodeString
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3869
    "
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3870
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3871
    "Created: / 25-03-2019 / 16:28:02 / Claus Gittinger"
24034
ba4c42171801 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24033
diff changeset
  3872
    "Modified: / 02-04-2019 / 10:48:44 / Claus Gittinger"
23971
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3873
!
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  3874
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3875
asFilename
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3876
    "return a Filename with pathname taken from the receiver"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3877
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3878
    ^ Filename named:self "(self asSingleByteStringReplaceInvalidWith:$?)"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3879
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3880
    "Modified: 20.5.1996 / 09:38:15 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3881
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3882
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3883
asFixedPoint
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3884
    "read a fixedPoint number from the receiver.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3885
     Notice, that errors may occur during the read,
7423
5b25b8e82453 comments
Claus Gittinger <cg@exept.de>
parents: 7422
diff changeset
  3886
     so you better setup some signal handler when using this method."
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3887
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3888
    ^ FixedPoint readFromString:self
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3889
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3890
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3891
     '0.123' asFixedPoint
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3892
     '12345' asFixedPoint
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3893
     '(1/5)' asFixedPoint
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3894
     'foo' asFixedPoint
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3895
     Object errorSignal handle:[:ex | ex return:0] do:['foo' asFixedPoint]
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3896
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3897
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3898
    "Modified: / 25.10.1997 / 15:19:00 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3899
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3900
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3901
asFixedPoint:scale
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3902
    "read a fixedPoint number with scale number of post-decimal digits
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3903
     from the receiver. Scale controls the number of displayed digits,
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3904
     not the number of actually valid digits.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3905
     Notice, that errors may occur during the read,
7423
5b25b8e82453 comments
Claus Gittinger <cg@exept.de>
parents: 7422
diff changeset
  3906
     so you better setup some signal handler when using this method."
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3907
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3908
    ^ (FixedPoint readFromString:self) scale:scale
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3909
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3910
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3911
     '0.123' asFixedPoint:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3912
     '123456' asFixedPoint:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3913
     ('3.14157' asFixedPoint:1) asFixedPoint:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3914
     '3.14157' asFixedPoint:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3915
     'foo' asFixedPoint:2
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3916
    "
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3917
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3918
    "Modified: / 25.10.1997 / 15:21:57 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3919
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3920
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3921
asFloat
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3922
    "read a float number from the receiver.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3923
     Notice, that errors may occur during the read,
7422
200486204923 comments
Claus Gittinger <cg@exept.de>
parents: 7421
diff changeset
  3924
     so you better setup some exception handler when using this method."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3925
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3926
    ^ (Number readFromString:self) asFloat
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3927
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3928
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3929
     '0.123' asFloat
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3930
     '12345' asFloat
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3931
     '(1/5)' asFloat
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3932
     Object errorSignal handle:[:ex | ex return:0] do:['foo' asFloat]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3933
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3934
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3935
25204
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3936
asImmutableCollection
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3937
    "fallback for subclasses of me which are not single byte strings.
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3938
     return myself"
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3939
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3940
    ^ self
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3941
!
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3942
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3943
asImmutableString
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3944
    "fallback for subclasses of me which are not single byte strings.
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3945
     return myself"
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3946
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3947
    ^ self
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3948
!
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  3949
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3950
asInteger
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3951
    "convert the receiver into an integer.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3952
     Notice, that errors may occur during the read,
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3953
     so you better setup some exception handler when using this method.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3954
     Also notice, that this method here is more strict than the code found
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3955
     in other smalltalks.
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3956
     For less strict integer reading, use Integer readFrom:aString"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3957
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3958
    ^ Integer readFromString:self
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3959
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3960
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3961
     '12345678901234567890' asInteger
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3962
     '-1234' asInteger
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3963
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3964
     The following raises an error:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3965
         '0.123' asInteger              <- reader finds more after reading 0
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3966
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3967
     whereas the less strict readFrom does not:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  3968
         Integer readFrom:'0.123'       <- reader stops at ., returning 0
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3969
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3970
     '0.123' asInteger
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3971
     '0.123' asNumber    <- returns what you expect
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3972
     Object errorSignal handle:[:ex | ex return:0] do:['foo' asInteger]
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3973
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3974
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3975
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3976
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3977
asLowercase
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3978
    "return a copy of myself in lowercase letters"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3979
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  3980
    |newStr c bitsPerCharacter
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3981
     mySize "{ Class: SmallInteger }" |
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3982
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3983
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3984
    mySize == 0 ifTrue:[^ self].
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3985
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3986
    newStr := self species new:mySize.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3987
    bitsPerCharacter := newStr bitsPerCharacter.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3988
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3989
    "/ handle the very seldom case of an uppercase char which needs
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  3990
    "/ more bits in its lowercase variant
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3991
    "/ (there are only a few of them)
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3992
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3993
    1 to:mySize do:[:i |
20705
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  3994
        c := (self at:i) asLowercase.
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  3995
        (c bitsPerCharacter > bitsPerCharacter
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  3996
         and:[c stringSpecies ~= newStr stringSpecies]) ifTrue:[
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  3997
            newStr := c stringSpecies fromString:newStr.
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  3998
            bitsPerCharacter := newStr bitsPerCharacter.
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  3999
        ].
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  4000
        newStr at:i put:c
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4001
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4002
    ^ newStr
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4003
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4004
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4005
     'HelloWorld' asLowercase
18662
3ad440593060 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18657
diff changeset
  4006
     'HelloWorld' asUnicode16String asLowercase
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4007
     'HelloWorld' asLowercaseFirst
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  4008
     'HelloWorld' asUppercase
20705
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  4009
     'HelloWorldÿ' asUppercase
3cebd7002ff6 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20697
diff changeset
  4010
     'HelloWorldŸ' asLowercase - currently returns an U16 string; should this be u8?
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4011
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4012
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4013
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4014
asLowercaseFirst
17508
8fe97d926c7d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17486
diff changeset
  4015
    "return a copy of myself where the first character is converted to lowercase.
8fe97d926c7d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17486
diff changeset
  4016
     If the first character is already lowercase, or there is no uppercase for it, return the
8fe97d926c7d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17486
diff changeset
  4017
     receiver."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4018
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4019
    |newString firstChar firstCharAsLowercase|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4020
11525
d76e654e24bd alspa changes
Claus Gittinger <cg@exept.de>
parents: 11524
diff changeset
  4021
    self isEmpty ifTrue:[^ self].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4022
    firstChar := (self at:1).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4023
    firstCharAsLowercase := firstChar asLowercase.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4024
    firstChar == firstCharAsLowercase ifTrue:[ ^ self].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4025
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4026
    firstCharAsLowercase bitsPerCharacter > self bitsPerCharacter ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4027
        newString := firstCharAsLowercase stringSpecies fromString:self.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4028
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4029
        newString := self stringSpecies fromString:self.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4030
    ].
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4031
    newString at:1 put:firstCharAsLowercase.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4032
    ^ newString
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4033
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4034
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4035
     'HelloWorld' asLowercase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4036
     'HelloWorld' asLowercaseFirst
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4037
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4038
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4039
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4040
asLowercaseLast
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4041
    "return a copy of myself where the last character is
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4042
     converted to lowercase."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4043
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4044
    |newString sz|
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4045
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4046
    sz := self size.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4047
    newString := self copyFrom:1 to:sz.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4048
    sz > 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4049
        newString at:sz put:(newString at:sz) asLowercase
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4050
    ].
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4051
    ^ newString
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4052
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4053
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4054
     'HelloWorld' asLowercase
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4055
     'HelloWorlD' asLowercaseLast
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4056
    "
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4057
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4058
17644
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  4059
asMutator
19473
4fe5cf0656b1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19464
diff changeset
  4060
    "return a corresponding setter method's selector.
4fe5cf0656b1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19464
diff changeset
  4061
     I.e. #foo asMutator returns #foo:"
17644
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  4062
20873
6c685c582f44 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20864
diff changeset
  4063
    ^ (self asSingleByteString,':') asSymbol
17644
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  4064
!
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  4065
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4066
asNumber
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4067
    "read a number from the receiver.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4068
     Notice, that (in contrast to ST-80) errors may occur during the read,
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4069
     so you better setup some signal handler when using this method.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4070
     Also notice, that this is meant to read end-user numbers from a string;
9135
c6396149df08 comment
Claus Gittinger <cg@exept.de>
parents: 9087
diff changeset
  4071
     it does not handle smalltalk numbers (i.e. radix).
c6396149df08 comment
Claus Gittinger <cg@exept.de>
parents: 9087
diff changeset
  4072
     To read a smalltalk number, use Number >> readSmalltalkFrom:.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4073
     This may change if ANSI specifies it."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4074
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4075
"/ ST-80 behavior:
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4076
"/  ^ Number readFromString:self onError:0
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4077
17061
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  4078
    ^ Number fromString:self
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  4079
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  4080
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4081
     '123'     asNumber
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4082
     '123.567' asNumber
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4083
     '(5/6)'   asNumber
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4084
     'foo'     asNumber
17061
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  4085
     '123a'    asNumber
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4086
     Object errorSignal handle:[:ex | ex returnWith:0] do:['foo' asNumber]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4087
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4088
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4089
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4090
asNumberFromFormatString:ignored
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4091
    "read a number from the receiver, ignoring any nonDigit characters.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4092
     This is typically used to convert from strings which include
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4093
     dollar-signs or millenium digits. However, this method also ignores
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4094
     the decimal point (if any) and therefore should be used with care."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4095
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4096
    |tempString|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4097
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4098
    tempString := self collect:[:char | char isDigit].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4099
    ^ Number readFromString:tempString onError:0
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4100
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4101
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4102
     'USD 123' asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4103
     'DM 123'  asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4104
     '123'     asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4105
     '123.567' asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4106
     '(5/6)'   asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4107
     'foo'     asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4108
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4109
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4110
21994
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4111
asPackageId
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4112
    "given a package-string as receiver, return a packageId object.
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4113
     packageIds hide the details of module/directory handling inside the path.
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4114
     See PackageId for the required format of those strings."
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4115
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4116
    ^ PackageId from: self string
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4117
21995
56e7aed639fd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21994
diff changeset
  4118
    "
56e7aed639fd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21994
diff changeset
  4119
     'stx:libbasic' asPackageId
56e7aed639fd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21994
diff changeset
  4120
    "
56e7aed639fd #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21994
diff changeset
  4121
21994
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4122
    "Created: / 11-07-2017 / 18:24:47 / cg"
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4123
!
c6af25dffe8d #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 21843
diff changeset
  4124
7977
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  4125
asSingleByteStringIfPossible
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  4126
    "if possible, return the receiver converted to a 'normal' string.
18181
f180c4847ddc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18172
diff changeset
  4127
     It is only possible, if there are no characters with codePoints above 255 in the receiver.
f180c4847ddc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18172
diff changeset
  4128
     If not possible, the (wideString) receiver is returned."
7977
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  4129
14555
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  4130
    self isWideString ifFalse:[^ self].
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4131
    self containsNon8BitElements ifTrue:[^ self].
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4132
    ^ self asSingleByteString
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4133
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4134
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4135
     'hello' asSingleByteStringIfPossible
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4136
     'hello' asText asSingleByteStringIfPossible
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4137
     'hello' asUnicodeString asText asSingleByteStringIfPossible
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4138
     'hello' asUnicodeString asSingleByteStringIfPossible
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4139
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4140
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4141
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4142
asSingleByteStringReplaceInvalidWith:replacementCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4143
    "return the receiver converted to a 'normal' string,
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4144
     with invalid characters replaced by replacementCharacter.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4145
     Can be used to convert from 16-bit strings to 8-bit strings
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4146
     and replace characters above code-255 with some replacement."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4147
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4148
    |newString|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4149
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4150
    newString := String new:(self size).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4151
    1 to:self size do:[:idx |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4152
        |char|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4153
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4154
        char := self at:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4155
        char codePoint <= 16rFF ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4156
            newString at:idx put:char
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4157
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4158
            newString at:idx put:replacementCharacter
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4159
        ].
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4160
    ].
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4161
    ^ newString
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4162
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  4163
    "Created: 30.6.1997 / 13:02:14 / cg"
7977
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  4164
!
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  4165
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4166
asString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4167
    "return myself - I am a string"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4168
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4169
    ^ self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4170
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4171
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4172
asStringCollection
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4173
    "return a collection of lines from myself."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4174
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4175
    ^ StringCollection fromString:self "string"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4176
21639
49330e00b2e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21619
diff changeset
  4177
    "
49330e00b2e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21619
diff changeset
  4178
     'hello\world\1\2\3' withCRs asStringCollection first    
49330e00b2e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21619
diff changeset
  4179
    "
49330e00b2e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21619
diff changeset
  4180
49330e00b2e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21619
diff changeset
  4181
    "Modified: / 13-05-1996 / 20:36:59 / cg"
49330e00b2e3 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21619
diff changeset
  4182
    "Modified (comment): / 13-03-2017 / 14:05:14 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4183
!
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4184
24162
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4185
asStringWithBitsPerCharacterAtLeast:numRequiredBitsPerCharacter
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4186
    "return the receiver in a representation which supports numRequiredBitsPerCharacter.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4187
     I.e. if required, convert to a Unicode16 or Unicode32 string"
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4188
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4189
    numRequiredBitsPerCharacter > 8 ifTrue:[
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4190
        numRequiredBitsPerCharacter > 16 ifTrue:[
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4191
            ^ self asUnicode32String
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4192
        ].    
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4193
        numRequiredBitsPerCharacter > self bitsPerCharacter ifTrue:[
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4194
            ^ self asUnicode16String
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4195
        ].    
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4196
    ].    
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4197
    ^ self
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4198
    
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4199
    "
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4200
     self assert:('abc' asStringWithBitsPerCharacterAtLeast:8) bitsPerCharacter == 8.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4201
     self assert:('abc' asStringWithBitsPerCharacterAtLeast:16) bitsPerCharacter == 16.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4202
     self assert:('abc' asStringWithBitsPerCharacterAtLeast:32) bitsPerCharacter == 32.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4203
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4204
     self assert:('abc' asUnicode16String asStringWithBitsPerCharacterAtLeast:8) bitsPerCharacter == 16.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4205
     self assert:('abc' asUnicode16String asStringWithBitsPerCharacterAtLeast:16) bitsPerCharacter == 16.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4206
     self assert:('abc' asUnicode16String asStringWithBitsPerCharacterAtLeast:32) bitsPerCharacter == 32.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4207
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4208
     self assert:('abc' asUnicode32String asStringWithBitsPerCharacterAtLeast:8) bitsPerCharacter == 32.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4209
     self assert:('abc' asUnicode32String asStringWithBitsPerCharacterAtLeast:16) bitsPerCharacter == 32.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4210
     self assert:('abc' asUnicode32String asStringWithBitsPerCharacterAtLeast:32) bitsPerCharacter == 32.
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4211
    "
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4212
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4213
    "Created: / 26-05-2019 / 12:47:07 / Claus Gittinger"
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4214
!
c13b7c624a38 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24147
diff changeset
  4215
23311
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4216
asStringWithoutEmphasis
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4217
    "return myself as a string without any emphasis"
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4218
    "return myself - I am a string"
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4219
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4220
    ^ self
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4221
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4222
    "Created: / 29-08-2018 / 09:21:07 / Claus Gittinger"
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4223
!
4c9259cd5dad #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23299
diff changeset
  4224
1434
a317ba02d685 allow aText asSymbol
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  4225
asSymbol
19039
ef85a80a62ea #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19033
diff changeset
  4226
    "Return a unique symbol with the name taken from the receiver's characters.
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4227
     The receiver must be a singleByte-String.
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4228
     TwoByte- and FourByteSymbols are (currently ?) not allowed."
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4229
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4230
    |str|
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4231
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4232
    str := self string.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4233
    str ~~ self ifTrue:[ ^ str asSymbol ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4234
    ^ self asSingleByteString asSymbol
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4235
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4236
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4237
asSymbolIfInterned
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  4238
    "If a symbol with the receiver's characters is already known, return it.
19692
ee0232b8aa2d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19686
diff changeset
  4239
     Otherwise, return nil.
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  4240
     This can be used to query for an existing symbol and is the same as:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4241
        self knownAsSymbol ifTrue:[self asSymbol] ifFalse:[nil]
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4242
     but slightly faster, since the symbol lookup operation is only performed once.
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4243
     The receiver must be a singleByte-String.
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  4244
     TwoByte- and FourByteSymbols are (currently ?) not allowed."
1435
3ee1fde2aa58 allow asSymbolIfInterned for Texts
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  4245
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4246
    |str|
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4247
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4248
    str := self string.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4249
    str == self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4250
        "must be some kind of N-ByteString"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4251
        str := self asSingleByteStringIfPossible.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4252
        str == self ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4253
            "single byte string conversion is not possible"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4254
            ^ nil.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4255
        ].
6642
4ce854094c6f asSymbolIfInterned avoid recursion failure
penk
parents: 6528
diff changeset
  4256
    ].
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4257
    ^ str asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4258
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4259
    "
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4260
     (Unicode16String with:(Character value:16rFFFF)) asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4261
     'new' asUnicodeString asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4262
     'new' asText asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4263
     'new' asUnicodeString asText asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  4264
    "
1435
3ee1fde2aa58 allow asSymbolIfInterned for Texts
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  4265
3ee1fde2aa58 allow asSymbolIfInterned for Texts
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  4266
    "Created: 22.5.1996 / 16:37:04 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4267
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4268
20160
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4269
asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4270
    "If a symbol with the receiver's characters is already known, return it.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4271
     Otherwise, return self.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4272
     This can be used to query for an existing symbol and is the same as:
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4273
        self knownAsSymbol ifTrue:[self asSymbol] ifFalse:[self]
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4274
     but slightly faster, since the symbol lookup operation is only performed once.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4275
     The receiver must be a singleByte-String.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4276
     TwoByte- and FourByteSymbols are (currently ?) not allowed."
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4277
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4278
    |sym|
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4279
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4280
    sym := self asSymbolIfInterned.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4281
    ^ sym isNil ifTrue:[self] ifFalse:[sym].
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4282
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4283
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4284
    "
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4285
     (Unicode16String with:(Character value:16rFFFF)) asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4286
     'new' asUnicodeString asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4287
     'new' asText asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4288
     'new' asUnicodeString asText asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4289
    "
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4290
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4291
    "Created: 22.5.1996 / 16:37:04 / cg"
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4292
!
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  4293
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4294
asText
9403
ba6ca2bcfe10 documentation
Stefan Vogel <sv@exept.de>
parents: 9391
diff changeset
  4295
    "return a Text-object (string with emphasis) from myself."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4296
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4297
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4298
    Text isNil ifTrue:[^ self].
17065
9ed49d70737a class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17061
diff changeset
  4299
    ^ Text string:self
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4300
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4301
    "Created: 12.5.1996 / 10:41:14 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4302
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4303
23617
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4304
asTimeDuration
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4305
    "return an TimeDuration object from the parsing the receiver string"
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4306
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4307
    ^ TimeDuration readFromString:self
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4308
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4309
   "
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4310
     Time now asTimeDuration
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4311
     10 asTimeDuration
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4312
     10 seconds asTimeDuration
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4313
     '10m 20s' asTimeDuration
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4314
    "
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4315
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4316
    "Created: / 21-01-2019 / 10:29:51 / Claus Gittinger"
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4317
!
6759aff2ec46 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23603
diff changeset
  4318
17021
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4319
asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4320
    "convert the receiver into an Timestamp.
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4321
     Notice, that errors may occur during the read,
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4322
     so you better setup some exception handler when using this method."
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4323
21030
4dba22c05301 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 20874
diff changeset
  4324
    ^ Timestamp readFrom:self
17021
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4325
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4326
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4327
     '2014-11-10 21:30:22.444' asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4328
     '2014-11-10 21:30:22.444Z' asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4329
     '2014-11-10 21:30:22.444+0200' asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4330
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4331
!
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4332
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4333
asTitlecase
8027
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4334
    "return a version of the receiver, where the first character is converted to titlecase,
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4335
     and everything else to lowercase.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4336
     See the comment in Character on what titlecase is."
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4337
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4338
    |newStr c bitsPerCharacter
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4339
     mySize "{ Class: SmallInteger }" |
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4340
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4341
    mySize := self size.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4342
    newStr := self species new:mySize.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4343
    bitsPerCharacter := newStr bitsPerCharacter.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4344
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4345
    1 to:mySize do:[:i |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4346
        i == 1 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4347
            c := (self at:i) asTitlecase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4348
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4349
            c := (self at:i) asLowercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4350
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4351
        c bitsPerCharacter > bitsPerCharacter ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4352
            newStr := c stringSpecies fromString:newStr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4353
            bitsPerCharacter := newStr bitsPerCharacter.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4354
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4355
        newStr at:i put:c
8027
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4356
    ].
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4357
    ^ newStr
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4358
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4359
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4360
     'helloWorld' asTitlecase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4361
     'HelloWorld' asTitlecase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4362
     'HELLOWORLD' asTitlecase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4363
     'helloworld' asTitlecase
8027
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  4364
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4365
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4366
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4367
asTitlecaseFirst
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4368
    "return a version of the receiver, where the first character is converted to titlecase.
8024
93db40068fba comment
Claus Gittinger <cg@exept.de>
parents: 8023
diff changeset
  4369
     Titlecase is much like uppercase for most characters, with the exception of some combined
93db40068fba comment
Claus Gittinger <cg@exept.de>
parents: 8023
diff changeset
  4370
     (2-character glyphs), which consist of an upper- and lower-case characters.
93db40068fba comment
Claus Gittinger <cg@exept.de>
parents: 8023
diff changeset
  4371
     If the first character is already titlecase, or there is no titlecasepercase for it, return the
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4372
     receiver."
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4373
8026
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4374
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4375
     For example, in Unicode, character U+01F3 is LATIN SMALL LETTER DZ.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4376
     (Let us write this compound character using ASCII as 'dz'.)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4377
     This character uppercases to character U+01F1, LATIN CAPITAL LETTER DZ.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4378
     (Which is basically 'DZ'.)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4379
     But it titlecases to to character U+01F2, LATIN CAPITAL LETTER D WITH SMALL LETTER Z.
8026
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4380
     (Which we can write 'Dz'.)
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4381
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4382
      character uppercase titlecase
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4383
      --------- --------- ---------
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4384
      dz        DZ        Dz
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4385
    "
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  4386
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4387
    |newString firstChar firstCharAsTitlecase|
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4388
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4389
    firstChar := (self at:1).
8025
04d9b6ef3012 comments
Claus Gittinger <cg@exept.de>
parents: 8024
diff changeset
  4390
    firstCharAsTitlecase := firstChar asTitlecase.
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4391
    firstChar == firstCharAsTitlecase ifTrue:[ ^ self].
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4392
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4393
    firstCharAsTitlecase bitsPerCharacter > self bitsPerCharacter ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4394
        newString := firstCharAsTitlecase stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4395
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4396
        newString := self stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4397
    ].
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4398
    newString at:1 put:firstCharAsTitlecase.
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4399
    ^ newString
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4400
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4401
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4402
     'helloWorld' asTitlecaseFirst
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4403
     'HelloWorld' asTitlecaseFirst
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  4404
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4405
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4406
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4407
asTwoByteString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4408
    "return the receiver converted to a two-byte string.
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4409
     Will be obsolete soon - use asUnicode16String."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4410
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4411
    ^ TwoByteString fromString:self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4412
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4413
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4414
asURI
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4415
    "return an URI with string taken from the receiver"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4416
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4417
    ^ URI fromString:self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4418
!
8710
Stefan Vogel <sv@exept.de>
parents: 8646
diff changeset
  4419
5776
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  4420
asURL
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  4421
    "return an URL-object from myself."
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  4422
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  4423
    ^ URL fromString:self
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  4424
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  4425
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4426
     'http://www.exept.de:80/index.html' asURL host
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4427
     'http://www.exept.de:80/index.html' asURL port
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4428
     'http://www.exept.de:80/index.html' asURL method
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4429
     'http://www.exept.de:80/index.html' asURL path
24147
a6e10cfad9c7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24145
diff changeset
  4430
     'file:///tmp/index.html' asURL path
a6e10cfad9c7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24145
diff changeset
  4431
     'file:///tmp/index.html' asURL method
a6e10cfad9c7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24145
diff changeset
  4432
     'file:///tmp/index.html' asURL asString
a6e10cfad9c7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24145
diff changeset
  4433
    "
a6e10cfad9c7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24145
diff changeset
  4434
a6e10cfad9c7 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24145
diff changeset
  4435
    "Modified (format): / 25-05-2019 / 09:33:18 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4436
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4437
18901
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4438
asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4439
    "return self as a UUID"
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4440
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4441
    ^ UUID fromString:self
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4442
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4443
    "
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4444
     UUID genUUID asString asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4445
     '{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4446
     '{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}' asUnicodeString asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4447
     'EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4448
     'EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B quatsch' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4449
     'quark EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4450
    "
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4451
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4452
    "Modified: / 02-08-2007 / 16:43:29 / cg"
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4453
!
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  4454
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4455
asUnicode16String
15035
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  4456
    "return the receiver in a two-byte per character representation.
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  4457
     Normally, the internal ST/X representation should be transparent and not
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  4458
     of the programmer's concern; except when strings are passed to the outside world,
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  4459
     such as wide-string ffi calls or file contents."
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  4460
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4461
     |sz|
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4462
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4463
     sz := self size.
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4464
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4465
     ^ (Unicode16String new:sz)
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4466
           replaceFrom:1 to:sz with:self startingAt:1;
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4467
           yourself.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4468
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4469
    "
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4470
        'abc' asUnicode16String
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4471
    "
24212
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4472
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4473
    "Modified (comment): / 28-05-2019 / 14:41:04 / Stefan Vogel"
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4474
!
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4475
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4476
asUnicode16StringReplaceInvalidWith:replacementCharacter
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4477
    ^ self asUnicode16String
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4478
a0efe45a7920 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 24162
diff changeset
  4479
    "Created: / 28-05-2019 / 12:15:44 / Stefan Vogel"
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4480
!
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4481
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4482
asUnicode16StringZ
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4483
    "return the receiver in a two-byte per character representation.
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4484
     Make sure that is zero terminated (last char is 16r0000).
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4485
     Normally, the internal ST/X representation should be transparent and not
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4486
     of the programmer's concern; except when strings are passed to the outside world,
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4487
     such as wide-string ffi calls or file contents."
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4488
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4489
     |sz|
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4490
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4491
     sz := self size.
25187
81d3d4761e81 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 25099
diff changeset
  4492
     (sz ~~ 0 and:[(self at:sz) == (Character codePoint:0)]) ifTrue:[
81d3d4761e81 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 25099
diff changeset
  4493
         ^ self asUnicode16String.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4494
     ].
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4495
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4496
     ^ (Unicode16String new:sz+1)
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4497
           replaceFrom:1 to:sz with:self startingAt:1;
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4498
           at:sz+1 put:(Character codePoint:0);
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4499
           yourself.
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4500
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4501
     "
22249
bbfc2684a222 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22233
diff changeset
  4502
        '' asUnicode16StringZ
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4503
        'abc' asUnicode16StringZ
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4504
        'abc' asUnicode16String asUnicode16StringZ
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4505
     "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4506
!
8295
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  4507
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  4508
asUnicode32String
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4509
    "return the receiver in a four-byte per character representation.
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4510
     Normally, the internal ST/X representation should be transparent and not
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4511
     of the programmer's concern; except when strings are passed to the outside world,
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4512
     such as wide-string ffi calls or file contents."
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4513
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4514
    ^ self as:Unicode32String
8295
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  4515
!
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  4516
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  4517
asUnicodeString
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4518
    "return the receiver in a two-byte per character representation.
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4519
     Normally, the internal ST/X representation should be transparent and not
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4520
     of the programmer's concern; except when strings are passed to the outside world,
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4521
     such as wide-string ffi calls or file contents."
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4522
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4523
    ^ self asUnicode16String
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4524
    "
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  4525
     'Hello World' asUnicodeString
14141
e86d245213b0 comment/format in: #asUnicodeString
Stefan Vogel <sv@exept.de>
parents: 14137
diff changeset
  4526
    "
8295
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  4527
!
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  4528
13073
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4529
asUnixFilename
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4530
    "return a UnixFilename with pathname taken from the receiver"
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4531
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4532
    ^ UnixFilename named:self
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4533
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4534
    "Created: / 20-09-2010 / 21:42:55 / cg"
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4535
!
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  4536
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4537
asUppercase
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4538
    "return a copy of myself in uppercase letters"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4539
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4540
    |newStr c bitsPerCharacter
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4541
     mySize "{ Class: SmallInteger }" |
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4542
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4543
    mySize := self size.
8954
12e701d7b5ac allow for receiver to be empty in asLowercase and asUppercase.
Claus Gittinger <cg@exept.de>
parents: 8938
diff changeset
  4544
    mySize == 0 ifTrue:[^ self].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4545
    newStr := self species new:mySize.
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4546
    bitsPerCharacter := newStr bitsPerCharacter.
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4547
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  4548
    "/ handle the very seldom case of a lowercase char which needs
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  4549
    "/ more bits in its uppercase variant
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  4550
    "/ (there are only a few of them)
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  4551
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4552
    1 to:mySize do:[:i |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4553
        c := (self at:i) asUppercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4554
        c bitsPerCharacter > bitsPerCharacter ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4555
            newStr := c stringSpecies fromString:newStr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4556
            bitsPerCharacter := newStr bitsPerCharacter.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4557
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4558
        newStr at:i put:c
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4559
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4560
    ^ newStr
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4561
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4562
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4563
     'helloWorld' asUppercase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4564
     'helloWorld' asUppercaseFirst
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4565
     (Character value:16rB5) asString asUppercase   -- needs 16 bits !!
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  4566
     (Character value:16rFF) asString asUppercase   -- needs 16 bits !!
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4567
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4568
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4569
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4570
asUppercaseFirst
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4571
    "return a version of the receiver, where the first character is converted to uppercase.
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4572
     If the first character is already uppercase, or there is no uppercase for it, return the
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4573
     receiver."
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4574
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4575
    |newString firstChar firstCharAsUppercase|
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4576
12679
18c4eabbb673 changed: #asUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 12665
diff changeset
  4577
    self isEmpty ifTrue:[^ self].
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4578
    firstChar := self at:1.
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4579
    firstCharAsUppercase := firstChar asUppercase.
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4580
    firstChar == firstCharAsUppercase ifTrue:[ ^ self].
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4581
12679
18c4eabbb673 changed: #asUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 12665
diff changeset
  4582
    "/ very seldom, the uppercase-char needs more bits than the lowercase one (turkish y-diaresis)
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4583
    firstCharAsUppercase bitsPerCharacter > self bitsPerCharacter ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4584
        newString := firstCharAsUppercase stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4585
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4586
        newString := self stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4587
    ].
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4588
    newString at:1 put:firstCharAsUppercase.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4589
    ^ newString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4590
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4591
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4592
     'helloWorld' asUppercase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4593
     'helloWorld' asUppercaseFirst
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4594
     'HelloWorld' asUppercaseFirst
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4595
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4596
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4597
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4598
asUppercaseLast
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4599
    "return a copy of myself where the last character is
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4600
     converted to uppercase."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4601
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4602
    |newString sz|
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4603
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4604
    sz := self size.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4605
    newString := self copyFrom:1 to:sz.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4606
    sz > 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4607
        newString at:sz put:(newString at:sz) asUppercase
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4608
    ].
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4609
    ^ newString
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4610
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4611
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4612
     'HelloWorld' asUppercase
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4613
     'HelloWorld' asUppercaseLast
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4614
    "
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4615
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4616
17021
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4617
asUtcTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4618
    "convert the receiver into an UtcTimestamp (Time is interpreted in the UTC timezone).
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4619
     Notice, that errors may occur during the read,
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4620
     so you better setup some exception handler when using this method."
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4621
21030
4dba22c05301 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 20874
diff changeset
  4622
    ^ UtcTimestamp readFrom:self
17021
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4623
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4624
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4625
     '2014-11-10 21:30:22.444' asUtcTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4626
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4627
!
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4628
23121
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4629
asVersionNumberCollection
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4630
    "Convert a string like 1.2.3a to an Array of numbers (or string, if not a number).
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4631
     Remove zeroes from the end."
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4632
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4633
    ^ (self asCollectionOfSubstringsSeparatedByAny:'.-_') asVersionNumberCollection.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4634
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4635
   "
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4636
     '1' asVersionNumberCollection.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4637
     '1.1' asVersionNumberCollection.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4638
     '1.1a' asVersionNumberCollection.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4639
     '1.1.0' asVersionNumberCollection.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4640
     '01.01.0' asVersionNumberCollection.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4641
     'expecco_18_1_0' asVersionNumberCollection.
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4642
    "
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4643
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4644
    "Created: / 20-06-2018 / 11:23:53 / Stefan Vogel"
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4645
    "Modified: / 20-06-2018 / 19:24:36 / Stefan Vogel"
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4646
!
a8b99292d0fc #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 23069
diff changeset
  4647
11062
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4648
literalArrayEncoding
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4649
    "encode myself as an array literal, from which a copy of the receiver
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4650
     can be reconstructed with #decodeAsLiteralArray."
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4651
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4652
    ^ self
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4653
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4654
    "Modified: 1.9.1995 / 02:25:45 / claus"
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4655
    "Modified: 22.4.1996 / 13:00:50 / cg"
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4656
!
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4657
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4658
string
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4659
    "return the receiver - for ST-80 compatibility"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4660
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4661
    ^ self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4662
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4663
    "Modified: 27.4.1996 / 13:29:30 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4664
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4665
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4666
!CharacterArray methodsFor:'copying'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4667
22528
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4668
, aStringOrCharacterOrAnyOther
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4669
    "redefined to allow characters and mixed strings to be appended.
1050
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4670
     This is nonStandard, but convenient"
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4671
23998
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4672
    |stringifiedArg 
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4673
     newSpecies newString l1 l2 combinedLen|
22528
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4674
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4675
    aStringOrCharacterOrAnyOther isCharacter ifTrue:[
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4676
        ^ self copyWith:aStringOrCharacterOrAnyOther
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4677
    ].
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4678
    aStringOrCharacterOrAnyOther isText ifTrue:[
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4679
        ^ aStringOrCharacterOrAnyOther concatenateFromString:self
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4680
    ].
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4681
    stringifiedArg := aStringOrCharacterOrAnyOther asString.
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4682
    stringifiedArg isString ifTrue:[
24037
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4683
        (stringifiedArg bitsPerCharacter) > (self bitsPerCharacter) ifTrue:[
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4684
            newSpecies := stringifiedArg species.
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4685
        ] ifFalse:[
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4686
            newSpecies := self species.
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4687
        ].
23998
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4688
        l1 := self size.
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4689
        l2 := stringifiedArg size.
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4690
        combinedLen := l1 + l2.
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4691
        newString := newSpecies uninitializedNew:combinedLen.    
24037
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4692
        newString 
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4693
            replaceFrom:1 to:l1 with:self startingAt:1;
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4694
            replaceFrom:l1+1 to:combinedLen with:stringifiedArg startingAt:1.
23998
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4695
        ^ newString
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4696
    ].
22528
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4697
    ^ super , stringifiedArg
1050
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4698
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4699
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4700
     'hello' , $1
24037
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4701
     'hello' , (Character codePoint:1046)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4702
     'hello' , '1'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4703
     'hello' , (' world' asText allBold)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4704
     'hello' , (JISEncodedString fromString:' world')
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4705
     (JISEncodedString fromString:'hello') , ' world'
1411
a3b3ab3044c6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1396
diff changeset
  4706
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
  4707
     Transcript showCR:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4708
         (Text string:'hello' emphasis:#italic) , (Text string:' world' emphasis:#bold)
22528
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4709
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4710
     'hello',123,'world'
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4711
     'hello' allBold,123,'world'
b54ce63c47f7 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22525
diff changeset
  4712
     'hello',123,'world' allBold
1050
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4713
    "
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4714
23997
da5e329759dc #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23983
diff changeset
  4715
    "Modified: / 28-06-1997 / 00:13:17 / cg"
23998
371547277f0d #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 23997
diff changeset
  4716
    "Modified: / 27-03-2019 / 19:37:34 / Claus Gittinger"
24033
d55b7d2b22fa #BUGFIX by Maren
matilk
parents: 23998
diff changeset
  4717
    "Modified: / 02-04-2019 / 10:39:28 / Maren"
24037
465ea9b3d20d #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24036
diff changeset
  4718
    "Modified (comment): / 02-04-2019 / 11:36:00 / Stefan Vogel"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4719
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4720
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4721
,, aString
7020
f51001115a54 comment
penk
parents: 6998
diff changeset
  4722
    "concatenate with a newLine in between"
6965
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4723
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4724
    ^ (self copyWith:Character cr) , aString
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4725
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4726
   "
7020
f51001115a54 comment
penk
parents: 6998
diff changeset
  4727
     'hello' ,, 'world'
6965
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4728
   "
23388
50ba8942dd42 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23333
diff changeset
  4729
50ba8942dd42 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23333
diff changeset
  4730
    "Modified (comment): / 25-09-2018 / 10:21:45 / Claus Gittinger"
6965
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4731
!
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4732
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4733
chopTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4734
    "if the receiver's size is less or equal to maxLen, return it.
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4735
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4736
     in the middle have been removed for a total string length
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4737
     of maxLen."
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4738
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4739
    |sz n1 n2|
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4740
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4741
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4742
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4743
    n1 := n2 := maxLen // 2.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4744
    maxLen odd ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4745
        n2 := n1 + 1
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4746
    ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4747
    ^ (self copyFrom:1 to:n1) , (self copyFrom:sz - n2 + 1)
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4748
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4749
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4750
     '12345678901234'   chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4751
     '123456789012345'  chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4752
     '1234567890123456' chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4753
     'aShortString' chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4754
     'aVeryLongNameForAStringThatShouldBeShortened' chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4755
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4756
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4757
    "Modified: / 24-10-2006 / 12:32:01 / cg"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4758
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4759
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4760
contractAtBeginningTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4761
    "if the receiver's size is less or equal to maxLen, return it.
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4762
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4763
     at the beginning have been replaced by '...' for a total string length
24539
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4764
     of maxLen. 
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4765
     Can be used to abbreviate long entries in tables.
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4766
     See also contractAtEndTo:, contractTo: and chopTo:"
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4767
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4768
    |sz|
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4769
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4770
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4771
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4772
    ^ '...' , (self copyFrom:(sz - (maxLen - 4)))
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4773
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4774
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4775
     '12345678901234' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4776
     '123456789012345' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4777
     '1234567890123456' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4778
     'aShortString' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4779
     'aVeryLongNameForAStringThatShouldBeShortened' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4780
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4781
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4782
    "Modified: / 24-10-2006 / 12:32:13 / cg"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4783
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4784
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4785
contractAtEndTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4786
    "if the receiver's size is less or equal to maxLen, return it.
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4787
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4788
     at the end have been replaced by '...' for a total string length
24539
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4789
     of maxLen. 
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4790
     Can be used to abbreviate long entries in tables.
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4791
     See also contractAtBeginningTo:, contractTo: and chopTo:"
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4792
21559
558ad08d56f1 #REFACTORING by mawalch
mawalch
parents: 21540
diff changeset
  4793
    (self size <= maxLen) ifTrue:[ ^ self ].
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4794
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4795
    ^ (self copyTo:maxLen-3),'...'
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4796
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4797
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4798
     '12345678901234' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4799
     '123456789012345' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4800
     '1234567890123456' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4801
     'aShortString' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4802
     'aVeryLongNameForAStringThatShouldBeShortened' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4803
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4804
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4805
    "Modified: / 24-10-2006 / 12:32:26 / cg"
21559
558ad08d56f1 #REFACTORING by mawalch
mawalch
parents: 21540
diff changeset
  4806
    "Modified: / 23-02-2017 / 21:32:21 / mawalch"
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4807
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4808
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4809
contractLeftTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4810
    "if the receiver's size is less or equal to maxLen, return it.
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4811
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4812
     near the first quarter have been replaced by '...' for a total string length
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4813
     of maxLen.
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4814
     Very similar to contractTo:, but better to abbreviate long filename entries,
24539
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4815
     where the right part is of more interest than the left.
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4816
    See also contractAtBeginningTo:, contractAtEndTo:, contractTo: and chopTo:"
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4817
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4818
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4819
    |sz "{ SmallInteger }"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4820
     halfSize quarterSize "{ SmallInteger }"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4821
     leftEnd rightEnd rightStart|
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4822
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4823
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4824
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4825
    halfSize := maxLen // 2.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4826
    quarterSize := maxLen // 4.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4827
    leftEnd := quarterSize-1.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4828
    rightEnd := maxLen - leftEnd - 3.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4829
    rightStart := sz - rightEnd + 1.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4830
    ^ (self copyTo:leftEnd),'...',(self copyFrom:rightStart)
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4831
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4832
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4833
     '12345678901234' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4834
     '123456789012345' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4835
     '1234567890123456' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4836
     'aShortString' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4837
     'aVeryLongNameForAStringThatShouldBeShortened' contractLeftTo:15
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4838
     'C:\Dokumente und Einstellungen\cg\work\bosch\dapas\hw_schnittstellen\DAPAS__HpibDLL.st' contractLeftTo:40
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4839
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4840
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4841
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4842
contractTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4843
    "if the receiver's size is less or equal to maxLen, return it.
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4844
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4845
     in the middle have been replaced by '...' for a total string length
24539
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4846
     of maxLen. 
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4847
     Can be used to abbreviate long entries in tables.
3a0f2a4b59d7 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24538
diff changeset
  4848
    See also contractAtBeginningTo:, contractAtEndTo: and chopTo:"
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4849
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4850
    |sz "{ SmallInteger }" leftSize rightSize|
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4851
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4852
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4853
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4854
    rightSize := maxLen // 2.
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4855
    leftSize := maxLen - rightSize.
13822
8c2b90928dd9 contractTo:
Claus Gittinger <cg@exept.de>
parents: 13633
diff changeset
  4856
    leftSize := leftSize - 2.
8c2b90928dd9 contractTo:
Claus Gittinger <cg@exept.de>
parents: 13633
diff changeset
  4857
    rightSize := rightSize - 1.
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4858
    ^ (self copyTo:leftSize),'...',(self copyFrom:(sz+1-rightSize))
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4859
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4860
    "
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4861
     '12345678901234' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4862
     '123456789012345' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4863
     '1234567890123456' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4864
     '12345678901234567' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4865
     '123456789012345678' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4866
     'aShortString' contractTo:15
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4867
     'aVeryLongNameForAStringThatShouldBeShortened' contractTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4868
     'C:\Dokumente und Einstellungen\cg\work\bosch\dapas\hw_schnittstellen\DAPAS__HpibDLL.st' contractTo:40
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4869
     ('1234567890123456789012345678901234567' contractTo:30) size
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4870
     ('1234567890123456789012345678901234567' contractTo:29) size
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4871
    "
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4872
13822
8c2b90928dd9 contractTo:
Claus Gittinger <cg@exept.de>
parents: 13633
diff changeset
  4873
    "Modified (comment): / 24-11-2011 / 19:17:46 / cg"
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4874
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4875
23061
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4876
copyBetween:string1 and:string2 caseSensitive:caseSensitive
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4877
    "return the substring between two matching sub-strings.
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4878
     Returns nil, if not both subStrings are present in the receiver."
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4879
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4880
    |idx1 leftIndex rightIndex|
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4881
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4882
    idx1 := self indexOfString:string1 caseSensitive:caseSensitive.
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4883
    idx1 ~~ 0 ifTrue:[
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4884
        leftIndex := (idx1 + string1 size).
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4885
        rightIndex := self indexOfString:string2 caseSensitive:caseSensitive startingAt:leftIndex.
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4886
        rightIndex ~~ 0 ifTrue:[
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4887
            ^ self copyFrom:leftIndex to:rightIndex-1
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4888
        ]
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4889
    ].
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4890
    ^ nil
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4891
    
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4892
    "
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4893
     'hello funny world' copyBetween:'hello' and:'world' caseSensitive:true -> ' funny '
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4894
     'helloworld' copyBetween:'hello' and:'world' caseSensitive:true -> ''
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4895
     'helloorld' copyBetween:'hello' and:'world' caseSensitive:true -> nil
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4896
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4897
     'hello funny World' copyBetween:'hello' and:'world' caseSensitive:true -> nil
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4898
     'helloWorld' copyBetween:'hello' and:'world' caseSensitive:true -> nil
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4899
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4900
     'hello funny World' copyBetween:'hello' and:'world' caseSensitive:false -> ' funny '
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4901
     'helloWorld' copyBetween:'hello' and:'world' caseSensitive:false -> ''
24882
bfbf32eef72b #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24843
diff changeset
  4902
     'bla { foo }' copyBetween:'{' and:'}' caseSensitive:true -> ' foo '
23061
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4903
    "
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4904
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4905
    "Created: / 08-06-2018 / 14:50:17 / Claus Gittinger"
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4906
!
82d596e2eb9c #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 23060
diff changeset
  4907
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4908
copyReplaceAll:oldElement with:newElement
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4909
    "return a copy of the receiver as a string, where all elements equal to oldElement
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4910
     have been replaced by newElement."
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4911
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4912
    "/ ANSI seems to allow a sequence to be replaced by another sequence,
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4913
    "/ whereas the old ST80 meant replace all occurrences... - sigh.
22231
7d56e386be74 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22205
diff changeset
  4914
    oldElement isString ifTrue:[
7d56e386be74 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22205
diff changeset
  4915
        newElement isString ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4916
            ^ self copyReplaceString:oldElement withString:newElement.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4917
        ].
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  4918
        self halt:'check if this is legal (trying to replace string by non-string)'.
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4919
    ].
22231
7d56e386be74 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22205
diff changeset
  4920
    newElement isString ifTrue:[
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  4921
        self halt:'check if this is legal (trying to replace non-string by string)'.
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4922
    ].
16212
da322a6b1d2a class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 16202
diff changeset
  4923
    ^ super copyReplaceAll:oldElement with:newElement
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  4924
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  4925
    "Modified: / 03-12-2018 / 16:03:32 / Stefan Vogel"
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4926
!
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4927
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4928
copyReplaceString:subString withString:newString
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4929
    "return a copy of the receiver, with all sequences of subString replaced
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4930
     by newString (i.e. slice in the newString in place of the oldString)."
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4931
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4932
    |tmpStream idx idx1|
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4933
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  4934
    tmpStream := self species writeStream.
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4935
    idx := 1.
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4936
    [idx ~~ 0] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4937
        idx1 := idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4938
        idx := self indexOfSubCollection:subString startingAt:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4939
        idx ~~ 0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4940
            tmpStream nextPutAll:(self copyFrom:idx1 to:idx-1).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4941
            tmpStream nextPutAll:newString.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4942
            idx := idx + subString size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4943
        ]
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4944
    ].
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4945
    tmpStream nextPutAll:(self copyFrom:idx1).
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4946
    ^ tmpStream contents
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4947
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4948
   "
9306
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4949
     '12345678901234567890' copyReplaceString:'123' withString:'OneTwoThree'
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4950
     '12345678901234567890' copyReplaceString:'123' withString:'*'
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4951
     '12345678901234567890' copyReplaceString:'234' withString:'foo'
22231
7d56e386be74 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22205
diff changeset
  4952
     '12345678901234567890' asUnicode16String copyReplaceString:'234' asUnicode16String withString:'foo'
7d56e386be74 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22205
diff changeset
  4953
     '12345678901234567890' asUnicode16String copyReplaceString:'234' withString:'foo'
7d56e386be74 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 22205
diff changeset
  4954
     '12345678901234567890' asUnicode16String copyReplaceString:'234' withString:'foo' asUnicode16String
9306
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4955
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4956
     ('a string with spaces' copyReplaceAll:$  withAll:' foo ')
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4957
        copyReplaceString:'foo' withString:'bar'
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4958
    "
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4959
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4960
    "Modified: / 31-05-1999 / 12:33:59 / cg"
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4961
    "Created: / 12-05-2004 / 12:00:00 / cg"
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4962
!
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4963
8040
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4964
copyWith:aCharacter
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4965
    "return a new string containing the receiver's characters
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4966
     and the single new character, aCharacter.
8040
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4967
     This is different from concatentation, which expects another string
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4968
     as argument, but equivalent to copy-and-addLast.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4969
     The code below cares for different width characters
8040
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4970
     (i.e. when appending a 16bit char to an 8bit string)"
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4971
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4972
    |sz newString|
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4973
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4974
    aCharacter bitsPerCharacter > self bitsPerCharacter ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4975
        sz := self size.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4976
        newString := aCharacter stringSpecies new:sz + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4977
        newString replaceFrom:1 to:sz with:self startingAt:1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4978
        newString at:sz+1 put:aCharacter.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4979
        ^ newString.
8040
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4980
    ].
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4981
    ^ super copyWith:aCharacter
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4982
!
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4983
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4984
restAfter:keyword withoutSeparators:strip
23392
224ad96ff678 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23388
diff changeset
  4985
    "compare the left part of the receiver with keyword,
224ad96ff678 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23388
diff changeset
  4986
     if it matches return the right rest.
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4987
     Finally, if strip is true, remove whiteSpace.
23392
224ad96ff678 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23388
diff changeset
  4988
     If the string does not start with keyword, return nil.
224ad96ff678 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23388
diff changeset
  4989
     
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4990
     This method is used to match and extract lines of the form:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  4991
        something: rest
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4992
     where we are interested in rest, but only if the receiver string
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4993
     begins with something.
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4994
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4995
     You may wonder why such a specialized method exists here
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4996
     - this is so common when processing mailboxes,
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4997
     rcs files, nntp/pop3 responses, that is was considered worth
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4998
     a special method here to avoid having the code below a hundred
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4999
     times in variuos places."
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5000
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5001
    |rest|
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5002
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5003
    (self startsWith:keyword) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5004
        rest := self copyFrom:(keyword size + 1).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5005
        strip ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5006
            rest := rest withoutSeparators
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5007
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5008
        ^ rest
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5009
    ].
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5010
    ^ nil
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5011
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5012
    "
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5013
     'foo: hello world' restAfter:'foo:' withoutSeparators:true
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5014
     'funny: something' restAfter:'foo:' withoutSeparators:true
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5015
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5016
     'foo:     hello world    ' restAfter:'foo:' withoutSeparators:true
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5017
     'foo:     hello world    ' restAfter:'foo:' withoutSeparators:false
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5018
    "
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5019
23392
224ad96ff678 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23388
diff changeset
  5020
    "Created: / 25-11-1995 / 11:04:18 / cg"
224ad96ff678 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23388
diff changeset
  5021
    "Modified (comment): / 27-09-2018 / 10:01:55 / Claus Gittinger"
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5022
!
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5023
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5024
splitAtString:subString withoutSeparators:strip
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5025
    "If the receiver is of the form:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5026
        <left><subString><right>
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5027
     return a collection containing left and right only.
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5028
     If strip is true, remove whiteSpace in the returned substrings."
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5029
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5030
    |idx left right|
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5031
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5032
    (idx := self indexOfSubCollection:subString) ~~ 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5033
        left := self copyTo:(idx - 1).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5034
        right := self copyFrom:(idx + subString size).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5035
        strip ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5036
            left := left withoutSeparators.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5037
            right := right withoutSeparators.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5038
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5039
        ^ StringCollection with:left with:right
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5040
    ].
23001
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
  5041
    self proceedableError:'substring not present in receiver'.
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5042
    ^ self
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5043
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5044
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5045
     'hello -> world' splitAtString:'->' withoutSeparators:false
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5046
     'hello -> world' splitAtString:'->' withoutSeparators:true
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5047
     'hello -> ' splitAtString:'->' withoutSeparators:true
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5048
     'hello > error' splitAtString:'->' withoutSeparators:true
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5049
    "
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5050
23001
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
  5051
    "Created: / 25-11-1995 / 11:04:18 / cg"
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
  5052
    "Modified: / 24-05-2018 / 14:55:52 / Claus Gittinger"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5053
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5054
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5055
!CharacterArray methodsFor:'displaying'!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5056
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5057
displayOn:aGC x:x y:y from:start to:stop
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5058
    "display the receiver on a GC"
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5059
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5060
    self displayOn:aGC x:x y:y from:start to:stop opaque:false
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5061
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5062
    "Modified: 12.5.1996 / 12:49:33 / cg"
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5063
!
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5064
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5065
displayOn:aGC x:x y:y from:start to:stop opaque:opaque
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5066
    "display the receiver on a GC"
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5067
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5068
    "q&d hack"
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5069
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  5070
    (start == 1 and:[stop == self size]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5071
        self displayOn:aGC x:x y:y opaque:opaque.
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  5072
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5073
        (self copyFrom:start to:stop) displayOn:aGC x:x y:y opaque:opaque.
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  5074
    ].
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5075
!
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5076
7082
675482728016 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7022
diff changeset
  5077
displayOn:aGc x:x y:y opaque:opaque
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5078
    "display the receiver in a graphicsContext - this method allows
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5079
     strings to be used like DisplayObjects."
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5080
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5081
    |s|
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5082
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5083
    s := self string.
7082
675482728016 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7022
diff changeset
  5084
    opaque ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5085
        aGc displayOpaqueString:s x:x y:y.
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5086
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5087
        aGc displayString:s x:x y:y.
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5088
    ].
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  5089
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  5090
    "Modified: 11.5.1996 / 14:42:48 / cg"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  5091
!
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  5092
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5093
displayOpaqueOn:aGC x:x y:y from:start to:stop
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5094
    "display the receiver on a GC"
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  5095
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  5096
    self displayOn:aGC x:x y:y from:start to:stop opaque:true
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5097
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5098
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5099
!CharacterArray methodsFor:'emphasis'!
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5100
11632
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5101
actionForAll:aBlock
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5102
    "change the action block of all characters.
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5103
     Some widgets use this like a href if clicked onto the text."
11632
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5104
24685
08556154faba #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24684
diff changeset
  5105
    Text isNil ifTrue:[^ self].
11632
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5106
    ^ self asText actionForAll:aBlock
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5107
!
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5108
5732
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5109
allBold
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5110
    "return a text object representing the receiver, but all boldified"
5732
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5111
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5112
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
6187
d4788adb7a8e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6184
diff changeset
  5113
    Text isNil ifTrue:[^ self].
5732
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5114
    ^ self asText allBold
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5115
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5116
    "
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5117
     Transcript showCR:'hello' asText allBold
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5118
     Transcript showCR:'hello' allBold
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5119
    "
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5120
!
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  5121
24684
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5122
allGray
24686
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5123
    "return a text object representing the receiver, but in gray color.
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5124
     This is used so often, that it's worth a utility here"
24684
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5125
24685
08556154faba #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24684
diff changeset
  5126
    Text isNil ifTrue:[^ self].
24684
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5127
    ^ self withColor:Color gray
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5128
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5129
    "
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5130
     Transcript showCR:'hello' asText allBold allGray
24686
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5131
     Transcript showCR:'hello' allBold allGray
24684
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5132
     Transcript showCR:'hello' allGray
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5133
    "
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5134
!
98b15ae35389 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24601
diff changeset
  5135
5898
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5136
allItalic
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5137
    "return a text object representing the receiver, but all in italic"
5898
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5138
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5139
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
6187
d4788adb7a8e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6184
diff changeset
  5140
    Text isNil ifTrue:[^ self].
5898
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5141
    ^ self asText allItalic
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5142
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5143
    "
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5144
     Transcript showCR:'hello' asText allItalic
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5145
     Transcript showCR:'hello' allItalic
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5146
    "
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5147
!
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  5148
23903
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5149
allNonBold
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5150
    "make all characters non-bold;
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5151
     I already have no emphasis, so the receiver string is returned"
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5152
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5153
    ^ self
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5154
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5155
    "Created: / 13-03-2019 / 21:02:45 / Claus Gittinger"
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5156
!
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5157
24686
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5158
allRed
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5159
    "return a text object representing the receiver, but in red color.
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5160
     This is used so often, that it's worth a utility here"
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5161
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5162
    Text isNil ifTrue:[^ self].
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5163
    ^ self withColor:Color red
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5164
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5165
    "
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5166
     Transcript showCR:'hello' asText allBold allRed
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5167
     Transcript showCR:'hello' allBold allRed
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5168
     Transcript showCR:'hello' allRed
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5169
    "
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5170
!
9f76fdad6477 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24685
diff changeset
  5171
11345
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5172
allStrikedOut
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5173
    "return a text object representing the receiver, but all in strikeout"
11345
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5174
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5175
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5176
    Text isNil ifTrue:[^ self].
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5177
    ^ self asText allStrikedOut
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5178
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5179
    "
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5180
     Transcript showCR:'hello' asText allStrikedOut
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5181
     Transcript showCR:'hello' allStrikedOut
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5182
    "
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5183
!
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  5184
10862
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5185
allUnderlined
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5186
    "return a text object representing the receiver, but all with underline"
10862
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5187
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5188
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5189
    Text isNil ifTrue:[^ self].
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5190
    ^ self asText allUnderlined
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5191
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5192
    "
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5193
     Transcript showCR:'hello' asText allUnderlined
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5194
     Transcript showCR:'hello' allUnderlined
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5195
    "
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5196
!
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  5197
19774
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5198
asActionLinkTo:aBlock
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5199
    "change the action block of all characters and colorize as a link.
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5200
     Some widgets use this like a href if clicked onto the text
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5201
     (for example, the system-browser's info at the bottom is such a widget)."
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5202
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5203
    "/ the blue may become a user-setting some time later..
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5204
    ^ (self actionForAll:aBlock) withColor:(Color blue)
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5205
!
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  5206
25217
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5207
asActionLinkTo:aBlock info:tooltipMessage
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5208
    "change the action block of all characters and colorize as a link.
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5209
     Some widgets use this like a href if clicked onto the text
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5210
     (for example, the system-browser's info at the bottom is such a widget).
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5211
     Caveat: currently the tooltipMessage is ignored (there is no mechanism for that, yet)"
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5212
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5213
    "/ the blue may become a user-setting some time later..
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5214
    ^ (self actionForAll:aBlock) withColor:(Color blue)
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5215
!
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5216
6228
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5217
colorizeAllWith:aColor
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5218
    "return a text object representing the receiver, but all colorized"
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5219
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5220
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5221
    Text isNil ifTrue:[^ self].
6228
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5222
    ^ self asText colorizeAllWith:aColor
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5223
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5224
    "
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5225
     Transcript showCR:('hello' colorizeAllWith:Color red)
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5226
     Transcript showCR:('world' colorizeAllWith:Color green darkened)
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5227
    "
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5228
!
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  5229
12330
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5230
colorizeAllWith:fgColor on:bgColor
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5231
    "return a text object representing the receiver, but all colorized with
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5232
     both fg and background color"
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5233
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5234
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5235
    Text isNil ifTrue:[^ self].
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5236
    ^ self asText colorizeAllWith:fgColor on:bgColor
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5237
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5238
    "
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5239
     Transcript showCR:('hello' colorizeAllWith:Color red on:Color yellow)
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5240
     Transcript showCR:('world' colorizeAllWith:Color red)
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5241
    "
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5242
!
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  5243
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5244
emphasis
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5245
    "return the emphasis.
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5246
     Since characterArrays do not hold any emphasis information,
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5247
     nil (no emphasis) is returned here."
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5248
23060
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  5249
    ^ RunArray new:(self size) withAll:nil
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  5250
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  5251
    "Created: / 14-05-1996 / 13:58:58 / cg"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  5252
    "Modified (format): / 08-06-2018 / 12:01:59 / Claus Gittinger"
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5253
!
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5254
6655
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5255
emphasis:emphasisCollection
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5256
    ^ self asText emphasis:emphasisCollection
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5257
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5258
    "
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5259
     Transcript showCR:('hello' emphasis:#(bold bold bold bold bold))
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5260
    "
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5261
!
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  5262
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5263
emphasisAt:characterIndex
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5264
    "return the emphasis at some index.
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5265
     Since characterArrays do not hold any emphasis information,
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5266
     nil (no emphasis) is returned here."
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5267
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5268
    ^ nil
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5269
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5270
    "Created: 11.5.1996 / 14:13:27 / cg"
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5271
!
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5272
11632
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5273
emphasisAtPoint:aPoint on:aGC
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5274
    "return the emphasis at a given point, or nil if there is none"
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5275
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5276
    ^ nil
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5277
!
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  5278
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5279
emphasisCollection
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5280
    "return the emphasis.
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5281
     Since characterArrays do not hold any emphasis information,
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5282
     nil (no emphasis) is returned here."
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5283
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5284
    ^ RunArray new:(self size)
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5285
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5286
    "Created: 14.5.1996 / 13:58:58 / cg"
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  5287
    "Modified: 14.5.1996 / 15:02:29 / cg"
3404
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  5288
!
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  5289
11919
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5290
emphasiseFrom:start to:stop with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5291
    "set to the emphasis within some range. return the receiver"
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5292
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5293
    ^ self asText emphasiseFrom:start to:stop with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5294
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5295
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  5296
     'hello' emphasiseFrom:2 with:#italic
11919
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5297
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5298
     Transcript showCR:('hello' emphasiseFrom:2 with:#italic)
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5299
    "
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5300
!
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5301
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5302
emphasiseFrom:start with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5303
    "set to the emphasis within some range. return the receiver"
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5304
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5305
    ^ self emphasiseFrom:start to:(self size) with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5306
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5307
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  5308
     'hello' emphasiseFrom:2 with:#italic
11919
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5309
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5310
     Transcript showCR:('hello' emphasiseFrom:2 with:#italic)
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5311
    "
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5312
!
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  5313
3404
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  5314
emphasizeAllWith:emphasis
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5315
    "return a text object representing the receiver, but all emphasized"
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5316
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5317
    "this test allows for small non-gui apps to be built without libbasic2 (where Text is)"
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  5318
    Text isNil ifTrue:[^ self].
3404
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  5319
    ^ self asText emphasizeAllWith:emphasis
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  5320
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  5321
    "
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  5322
     Transcript showCR:('hello' emphasizeAllWith:#bold)
3599
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  5323
     Transcript showCR:('hello' emphasizeAllWith:(#color -> Color red))
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  5324
     Transcript showCR:('hello' emphasizeAllWith:(#color -> Color red))
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  5325
    "
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  5326
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  5327
    "Modified: / 17.6.1998 / 12:51:44 / cg"
5097
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  5328
!
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  5329
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  5330
makeSelectorBoldIn:aClass
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5331
    "the receiver represents some source code for a method in aClass.
5097
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  5332
     Change myself to boldify the selector.
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5333
     Not yet implemented (could easily use the syntaxHighlighter for this ...).
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5334
     For protocol compatibility with other smalltalks"
5097
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  5335
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  5336
    ^ self
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  5337
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5338
    "Created: / 13-12-1999 / 21:49:24 / cg"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5339
!
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5340
19762
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  5341
withColor:aColorOrColorSymbol
20697
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5342
    "return a text object representing the receiver, but all colorized.
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5343
     Usage of a colorSymbol is considered bad style (provided for backward compatibility);
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5344
     please change to pass a proper color 
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5345
     (makes it easier to find color uses)"
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5346
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5347
    |color|
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5348
    
19762
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  5349
    aColorOrColorSymbol isSymbol ifTrue:[
20697
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5350
        color := (Color perform:aColorOrColorSymbol)
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5351
    ] ifFalse:[
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5352
        color := aColorOrColorSymbol
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5353
    ].    
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5354
    ^ self colorizeAllWith:color
19762
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  5355
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  5356
    "
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  5357
     Transcript showCR:('hello' withColor:#red)
20697
93758746d4b4 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20667
diff changeset
  5358
     Transcript showCR:('world' withColor:#blue)
16697
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  5359
     Transcript showCR:('hello' withColor:Color red)
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  5360
     Transcript showCR:('world' withColor:Color green darkened)
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  5361
    "
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  5362
!
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  5363
22911
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5364
withColor:foregroundColorOrColorSymbol on:backgroundColorOrColorSymbol
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5365
    "return a text object representing the receiver, but all colorized with both fg and bg.
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5366
     Usage of a colorSymbol is considered bad style (provided for backward compatibility);
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5367
     please change to pass a proper color 
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5368
     (makes it easier to find color uses)"
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5369
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5370
    |fgColor bgColor|
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5371
    
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5372
    foregroundColorOrColorSymbol isSymbol ifTrue:[
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5373
        fgColor := (Color perform:foregroundColorOrColorSymbol)
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5374
    ] ifFalse:[
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5375
        fgColor := foregroundColorOrColorSymbol
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5376
    ].    
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5377
    backgroundColorOrColorSymbol isSymbol ifTrue:[
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5378
        bgColor := (Color perform:backgroundColorOrColorSymbol)
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5379
    ] ifFalse:[
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5380
        bgColor := backgroundColorOrColorSymbol
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5381
    ].    
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5382
    ^ self colorizeAllWith:fgColor on:bgColor
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5383
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5384
    "
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5385
     Transcript showCR:('hello' withColor:#red on:#blue)
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5386
     Transcript showCR:('hello' withColor:Color red on:Color blue)
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5387
    "
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5388
!
7a780ffd6698 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22908
diff changeset
  5389
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5390
withoutAnyColorEmphasis
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5391
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5392
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5393
    ^ self
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5394
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5395
    "Created: / 06-03-2012 / 18:15:38 / cg"
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  5396
!
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  5397
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5398
withoutBackgroundColorEmphasis
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5399
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5400
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5401
    ^ self
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5402
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5403
    "Modified (comment): / 06-03-2012 / 18:14:27 / cg"
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5404
!
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5405
23903
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5406
withoutEmphasis
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5407
    "for protocol compatibility with Text"
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5408
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5409
    ^ self
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5410
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5411
    "Created: / 13-03-2019 / 21:03:41 / Claus Gittinger"
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5412
!
e12549074965 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23863
diff changeset
  5413
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  5414
withoutEmphasis:emphasisToRemove
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5415
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5416
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  5417
    ^ self
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5418
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5419
    "Modified (comment): / 06-03-2012 / 18:14:29 / cg"
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5420
!
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5421
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5422
withoutForegroundColorEmphasis
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5423
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5424
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  5425
    ^ self
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5426
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  5427
    "Modified (comment): / 06-03-2012 / 18:14:31 / cg"
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5428
! !
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  5429
7265
3b007758ff5b method category rename
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  5430
!CharacterArray methodsFor:'encoding & decoding'!
991
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
  5431
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5432
asDenormalizedUnicodeString
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5433
    "return a new string containing the same characters, as a denormalized Unicode string.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5434
     This replaces diacritical chars (umlauts, accented chars etc) by
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5435
     a sequence with combination characters.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5436
     (i.e. a plain character followed by a combining diacritical in the 0x03xx range)"
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5437
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5438
    |map outStream mapChar|
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5439
22406
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5440
    self containsNon7BitAscii ifFalse:[
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5441
        ^ self  "/ I cannot contain any diacritical chars
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5442
    ]. 
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5443
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5444
    map := self class unicodeDenormalizationMap.
22406
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5445
    mapChar := [:char |
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5446
            |mappedChars|
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5447
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5448
            (mappedChars := map at:char ifAbsent:nil) notNil ifTrue:[ 
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5449
                mappedChars do:mapChar.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5450
            ] ifFalse:[
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5451
                outStream nextPut:char.        
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5452
            ].
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5453
        ].
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5454
        
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5455
    outStream := WriteStream on:(Unicode16String new:self size).
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5456
    self do:mapChar.        
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5457
    ^ outStream contents asSingleByteStringIfPossible.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5458
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5459
    "
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5460
     'Ö' asDenormalizedUnicodeString 
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5461
     'aÖÄx' asDenormalizedUnicodeString 
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5462
     'abc' asDenormalizedUnicodeString 
22406
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5463
     'ṩ' asDenormalizedUnicodeString 
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5464
    "
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5465
b94edbfd6aa7 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 22377
diff changeset
  5466
    "Modified (format): / 02-01-2018 / 18:52:33 / stefan"
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5467
!
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  5468
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
  5469
asNormalizedUnicodeString
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5470
    "return a new string containing the same characters, as a normalized Unicode string.
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5471
     This replaces combination characters by corresponding single characters.
20863
63c5a5ce7ac2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20787
diff changeset
  5472
     (i.e. diaresis and other combining diacriticals in the 0x03xx range).
63c5a5ce7ac2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20787
diff changeset
  5473
     Caveat: 
63c5a5ce7ac2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20787
diff changeset
  5474
        possibly incomplete: only COMBINING_DIACRITICAL_MARKS are cared for.
63c5a5ce7ac2 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20787
diff changeset
  5475
        Does not care for COMBINING_DIACRITICAL_MARKS_EXTENDED
20864
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
  5476
        and COMBINING_DIACRITICAL_MARKS_SUPPLEMENT.
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
  5477
        However; those are used for German dialectology, ancient Greek and other similar
a135a13b3d1f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20863
diff changeset
  5478
        exotic uses. Probably noone will ever even notice that they are missing..."
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5479
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5480
    |outStream prevChar map mapEntries mappedChar|
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5481
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5482
    map := self class unicodeNormalizationMap.
20017
c52f5f68f9fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20014
diff changeset
  5483
     
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5484
    self bitsPerCharacter <= 8 ifTrue:[^ self]. "/ I cannot contain any overtypes
20017
c52f5f68f9fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20014
diff changeset
  5485
    (self contains:[:ch | ch unicodeBlock == #'COMBINING_DIACRITICAL_MARKS']) ifFalse:[^ self]. "/ I do not contain any overtypes 
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5486
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5487
    outStream := WriteStream on:(self species new:self size).
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5488
    self do:[:char |
20017
c52f5f68f9fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20014
diff changeset
  5489
        ((char unicodeBlock == #'COMBINING_DIACRITICAL_MARKS')
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5490
          and:[ (mapEntries := map at:char ifAbsent:nil) notNil
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5491
          and:[ (mappedChar := mapEntries at:prevChar ifAbsent:nil) notNil ]]) ifTrue:[ 
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5492
            prevChar := mappedChar.
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5493
        ] ifFalse:[
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5494
            prevChar notNil ifTrue:[ outStream nextPut:prevChar].        
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5495
            prevChar := char
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5496
        ].
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5497
    ].        
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
  5498
    prevChar notNil ifTrue:[ outStream nextPut:prevChar].        
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5499
    ^ outStream contents asSingleByteStringIfPossible.
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5500
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5501
    "
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5502
     self unicodeNormalizationMap
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5503
     ('O' , (Character value:16r0308)) asNormalizedUnicodeString -> 'Ö'
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5504
     ('O' , (Character value:16r0308) ,
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5505
      'A' , (Character value:16r0308)) asNormalizedUnicodeString -> 'ÖÄ'
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5506
     ('s' , (Character value:16r0323) , (Character value:16r0307)) asNormalizedUnicodeString -> 'ṩ'
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  5507
     ('s' , (Character value:16r0307) , (Character value:16r0323)) asNormalizedUnicodeString -> 'ṩ'
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5508
    "
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5509
!
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  5510
12767
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5511
decodeAsLiteralArray
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5512
    "given a literalEncoding in the receiver,
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5513
     create & return the corresponding object.
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5514
     The inverse operation to #literalArrayEncoding."
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5515
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5516
    ^ self
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5517
!
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  5518
991
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
  5519
decodeFrom:encodingSymbol
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5520
    "given the receiver encoded as described by encodingSymbol,
8124
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  5521
     convert it into internal ST/X (unicode) encoding and return a corresponding CharacterArray."
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  5522
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  5523
    |myEncoding encoder|
7950
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  5524
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  5525
    encodingSymbol isNil ifTrue:[^ self].
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  5526
    myEncoding := self encoding.
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  5527
    encodingSymbol == myEncoding ifTrue:[^ self].
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  5528
22451
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5529
    encoder := CharacterEncoder encoderToEncodeFrom:myEncoding into:encodingSymbol.
8124
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  5530
    encoder isNil ifTrue:[^ self].
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  5531
    ^ encoder decodeString:self.
22451
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5532
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5533
    "Modified: / 17-01-2018 / 17:34:43 / stefan"
991
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
  5534
!
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
  5535
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5536
encodeFrom:oldEncoding into:newEncoding
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5537
    ^ CharacterEncoder encodeString:self from:oldEncoding into:newEncoding
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  5538
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  5539
    "
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  5540
     'äüö' encodeFrom:#iso8859 into:#utf8
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  5541
     ('äüö' encodeFrom:#iso8859 into:#utf8) encodeFrom:#utf8 into:#unicode
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  5542
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5543
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5544
22451
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5545
encodeInto:newEncoding
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5546
    ^ CharacterEncoder encodeString:self from:self encoding into:newEncoding
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5547
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5548
    "
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5549
     'äüö' encodeInto:#utf8
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5550
     ('äüö' encodeInto:#utf8) decodeFrom:#utf8
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5551
    "
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5552
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5553
    "Created: / 17-01-2018 / 17:43:20 / stefan"
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5554
!
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5555
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5556
rot13
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5557
     "Usenet: from `rotate alphabet 13 places']
6835
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5558
      The simple Caesar-cypher encryption that replaces each English
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5559
      letter with the one 13 places forward or back along the alphabet,
6835
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5560
      so that 'The butler did it!!' becomes 'Gur ohgyre qvq vg!!'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5561
      Most Usenet news reading and posting programs include a rot13 feature.
6835
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5562
      It is used to enclose the text in a sealed wrapper that the reader must choose
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5563
      to open -- e.g., for posting things that might offend some readers, or spoilers.
6835
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5564
      A major advantage of rot13 over rot(N) for other N is that it
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5565
      is self-inverse, so the same code can be used for encoding and decoding."
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5566
11865
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5567
    ^ self rot:13
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5568
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5569
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5570
     'hello world' rot13
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5571
     'hello world' rot13 rot13
6835
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5572
    "
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5573
!
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  5574
11865
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5575
rot:n
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5576
     "Usenet: from `rotate alphabet N places']
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5577
      The simple Caesar-cypher encryption that replaces each English
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5578
      letter with the one N places forward or back along the alphabet,
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5579
      so that 'The butler did it!!' becomes 'Gur ohgyre qvq vg!!' by rot 13
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5580
      Most Usenet news reading and posting programs include a rot13 feature.
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5581
      It is used to enclose the text in a sealed wrapper that the reader must choose
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5582
      to open -- e.g., for posting things that might offend some readers, or spoilers.
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5583
      A major advantage of rot13 over rot(N) for other N is that it
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5584
      is self-inverse, so the same code can be used for encoding and decoding."
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5585
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5586
    ^ self species
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5587
        streamContents:[:aStream |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5588
            self do:[:char |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5589
                aStream nextPut:(char rot:n) ]]
11865
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5590
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5591
    "
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5592
     'hello world' rot:13
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5593
     ('hello world' rot:13) rot:13
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5594
    "
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5595
!
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  5596
15656
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5597
utf16Encoded
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5598
    "Return my UTF-16 representation as a new TwoByteString"
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5599
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5600
    |s|
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5601
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5602
    s := WriteStream on:(TwoByteString uninitializedNew:self size).
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5603
    s nextPutAllUtf16:self.
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5604
    ^ s contents
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5605
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5606
    "
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5607
     'abcde1234' utf16Encoded
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  5608
     'abcdeäöüß' utf16Encoded
15656
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5609
    "
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5610
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5611
    "Modified: / 11-05-2010 / 19:12:37 / cg"
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5612
!
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  5613
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5614
utf8Encoded
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5615
    "return the UTF-8 representation of a Unicode string.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5616
     The resulting string is only useful to be stored on some external file,
21318
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  5617
     or sent to a communaction channel.
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  5618
     Not for being used inside ST/X."
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5619
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5620
    |string stream|
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  5621
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  5622
    string := self string.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5623
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5624
    "/ avoid creation of new strings if possible
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5625
    string containsNon7BitAscii ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5626
        ^ string asSingleByteString
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5627
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5628
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5629
    "make it size 2 for 1-byte strings"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5630
    stream := WriteStream on:(String uninitializedNew:(1 + (string size * 3 // 2))).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5631
    string utf8EncodedOn:stream.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5632
    ^ stream contents.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5633
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5634
    "
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5635
     'hello' utf8Encoded asByteArray                             #[104 101 108 108 111]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5636
     (Character value:16r40) asString utf8Encoded asByteArray    #[64]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5637
     (Character value:16r7F) asString utf8Encoded asByteArray    #[127]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5638
     (Character value:16r80) asString utf8Encoded asByteArray    #[194 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5639
     (Character value:16rFF) asString utf8Encoded asByteArray    #[195 191]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5640
     (Character value:16r100) asString utf8Encoded asByteArray   #[196 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5641
     (Character value:16r200) asString utf8Encoded asByteArray   #[200 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5642
     (Character value:16r400) asString utf8Encoded asByteArray   #[208 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5643
     (Character value:16r800) asString utf8Encoded asByteArray   #[224 160 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5644
     (Character value:16r1000) asString utf8Encoded asByteArray  #[225 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5645
     (Character value:16r2000) asString utf8Encoded asByteArray  #[226 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5646
     (Character value:16r4000) asString utf8Encoded asByteArray  #[228 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5647
     (Character value:16r8000) asString utf8Encoded asByteArray  #[232 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5648
     (Character value:16rFFFF) asString utf8Encoded asByteArray  #[239 191 191]
21318
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  5649
     (Character value:16r1FFFF) asString utf8Encoded asByteArray #[240 159 191 191]
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  5650
     (Character value:16r3FFFF) asString utf8Encoded asByteArray #[240 191 191 191]
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  5651
     (Character value:16rFFFFF) asString utf8Encoded asByteArray #[243 191 191 191]
ba0cd7a99ede #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 21283
diff changeset
  5652
     (Character value:16r3FFFFF) asString utf8Encoded asByteArray #[248 143 191 191 191]
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  5653
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  5654
     'abcde1234' asUnicode32String utf8Encoded
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  5655
     'abcdeäöüß' asUnicode32String utf8Encoded
12925
5c0a9a633ca1 comment/format in: #utf8Encoded
Claus Gittinger <cg@exept.de>
parents: 12912
diff changeset
  5656
    "
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  5657
!
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  5658
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  5659
utf8EncodedOn:aStream
21468
10849f037322 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21425
diff changeset
  5660
    "write the UTF-8 representation of myself to aStream."
10849f037322 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21425
diff changeset
  5661
10849f037322 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21425
diff changeset
  5662
    aStream nextPutAllUtf8:self.
10849f037322 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21425
diff changeset
  5663
10849f037322 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21425
diff changeset
  5664
    "Modified: / 16-02-2017 / 16:51:32 / stefan"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5665
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5666
22566
bcf9d16ec48f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22528
diff changeset
  5667
!CharacterArray methodsFor:'filling and replacing'!
bcf9d16ec48f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22528
diff changeset
  5668
bcf9d16ec48f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22528
diff changeset
  5669
clearContents
bcf9d16ec48f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22528
diff changeset
  5670
    "to be used with cryptographic keys, to wipe their contents after use"
bcf9d16ec48f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22528
diff changeset
  5671
bcf9d16ec48f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22528
diff changeset
  5672
    self atAllPut:(Character value:0)
bcf9d16ec48f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22528
diff changeset
  5673
! !
22451
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5674
0748418b3412 #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 22432
diff changeset
  5675
25217
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5676
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
  5677
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5678
!CharacterArray methodsFor:'matching - glob expressions'!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5679
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5680
compoundMatch:aString
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5681
    "like match, but the receiver may be a compound match pattern,
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5682
     consisting of multiple simple GLOB patterns, separated by semicolons.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5683
     This is usable with fileName pattern fields.
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5684
     This is a case sensitive match: lower/uppercase are considered different.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5685
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5686
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5687
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5688
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5689
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5690
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5691
    ^ self compoundMatch:aString caseSensitive:true withoutSeparators:false
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5692
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5693
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5694
     'f*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5695
     'b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5696
     'f*;b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5697
     'f*;b*' match:'bar'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5698
     'f*;b*' compoundMatch:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5699
     'f*;b*' compoundMatch:'bar'
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5700
     '*.png;*.gif' compoundMatch:'bar.jpg'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5701
     '*.png;*.gif' compoundMatch:'bar.gif'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5702
    "
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5703
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5704
    "Modified: / 30-01-1998 / 11:40:18 / stefan"
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5705
    "Modified: / 16-12-1999 / 01:22:08 / cg"
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5706
    "Modified (comment): / 02-03-2019 / 12:21:33 / Claus Gittinger"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5707
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5708
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5709
compoundMatch:aString caseSensitive:caseSensitive
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5710
    "like match, but the receiver may be a compound match pattern,
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5711
     consisting of multiple simple GLOB patterns, separated by semicolons.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5712
     This is usable with fileName pattern fields.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5713
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5714
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5715
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5716
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5717
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5718
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5719
    ^self compoundMatch:aString caseSensitive:caseSensitive withoutSeparators:false
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5720
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5721
    "
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5722
     'f*' match:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5723
     'b*' match:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5724
     'f*;b*' match:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5725
     'f*;b*' match:'bar'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5726
     'f*;b*' compoundMatch:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5727
     'f*;b*' compoundMatch:'bar'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5728
     'f*;b*' compoundMatch:'Foo' caseSensitive:false
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5729
     'f*;b*' compoundMatch:'Bar' caseSensitive:false
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5730
     'f*;b*' compoundMatch:'ccc' caseSensitive:false
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5731
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5732
     '*.png;*.gif' compoundMatch:'bar.GIF'
24524
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5733
     '*.png;*.gif' compoundMatch:'bar.GIF' caseSensitive:false 
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5734
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5735
     'foo' compoundMatch:'bar' caseSensitive:false 
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5736
     'Bar' compoundMatch:'bar' caseSensitive:false  
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5737
     'bar' compoundMatch:'bar' caseSensitive:true   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5738
     'Bar' compoundMatch:'bar' caseSensitive:true       
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5739
     'foo;Bar' compoundMatch:'bar' caseSensitive:false  
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5740
     'foo;bar' compoundMatch:'bar' caseSensitive:true   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5741
     'foo;Bar' compoundMatch:'bar' caseSensitive:true   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5742
     'foo;bar' compoundMatch:'Bar' caseSensitive:false  
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5743
     'foo;bar' compoundMatch:'Bar' caseSensitive:true   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5744
     'foo;bar' compoundMatch:'Bar' caseSensitive:true   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5745
     '.foo' compoundMatch:'.foo' caseSensitive:true   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5746
     '.foo' compoundMatch:'.Foo' caseSensitive:true   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5747
     '.foo' compoundMatch:'.Foo' caseSensitive:false   
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5748
     'bar;.foo' compoundMatch:'.foo' caseSensitive:true     
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5749
     'bar;.foo' compoundMatch:'.Foo' caseSensitive:true     
4f5081209498 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24514
diff changeset
  5750
     'bar;.foo' compoundMatch:'.Foo' caseSensitive:false    
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5751
    "
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5752
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5753
    "Modified: / 15-04-1997 / 15:50:33 / cg"
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5754
    "Modified: / 30-01-1998 / 11:40:18 / stefan"
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5755
    "Created: / 16-12-1999 / 01:21:35 / cg"
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5756
    "Modified (comment): / 02-03-2019 / 12:22:14 / Claus Gittinger"
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5757
!
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5758
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5759
compoundMatch:aString caseSensitive:caseSensitive withoutSeparators:withoutSeparators
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5760
    "like match, but the receiver may be a compound match pattern,
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5761
     consisting of multiple simple GLOB patterns, separated by semicolons.
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5762
     If withoutSeparators is true, spaces around individual patterns are stripped off.
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5763
     This is usable with fileName pattern fields.
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5764
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5765
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5766
             NOT the ST-80 meaning.
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5767
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5768
     NOTICE: the receiver is the match pattern"
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5769
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5770
    |matchers|
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5771
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5772
    matchers := self asCollectionOfSubstringsSeparatedBy:$;.
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5773
    withoutSeparators ifTrue:[ matchers := matchers collect:[:each | each withoutSeparators] ].
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5774
    ^ matchers
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5775
        contains:[:aPattern |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5776
            aPattern match:aString caseSensitive:caseSensitive escapeCharacter:nil
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5777
        ].
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5778
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5779
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5780
     'f*' match:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5781
     'b*' match:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5782
     'f*;b*' match:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5783
     'f*;b*' match:'bar'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5784
     'f*;b*' compoundMatch:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5785
     'f*;b*' compoundMatch:'bar'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5786
     'f*;b*' compoundMatch:'Foo' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5787
     'f*;b*' compoundMatch:'Bar' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5788
     'f*;b*' compoundMatch:'ccc' caseSensitive:false
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5789
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5790
     'f* ; b*' compoundMatch:'foo'
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5791
     'f* ; b*' compoundMatch:'foo' caseSensitive:true withoutSeparators:true
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5792
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5793
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5794
    "Modified: / 15.4.1997 / 15:50:33 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5795
    "Modified: / 30.1.1998 / 11:40:18 / stefan"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5796
    "Created: / 16.12.1999 / 01:21:35 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5797
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5798
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5799
compoundMatch:aString ignoreCase:ignoreCase
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5800
    <resource: #obsolete>
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5801
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5802
    "like match, but the receiver may be a compound match pattern,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5803
     consisting of multiple simple GLOB patterns, separated by semicolons.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5804
     This is usable with fileName pattern fields.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5805
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5806
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5807
             NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5808
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5809
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5810
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5811
    ^ self compoundMatch:aString caseSensitive:ignoreCase not
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5812
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5813
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5814
     'f*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5815
     'b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5816
     'f*;b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5817
     'f*;b*' match:'bar'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5818
     'f*;b*' compoundMatch:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5819
     'f*;b*' compoundMatch:'bar'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5820
     'f*;b*' compoundMatch:'Foo' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5821
     'f*;b*' compoundMatch:'Bar' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5822
     'f*;b*' compoundMatch:'ccc' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5823
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5824
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5825
    "Modified: / 15.4.1997 / 15:50:33 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5826
    "Modified: / 30.1.1998 / 11:40:18 / stefan"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5827
    "Created: / 16.12.1999 / 01:21:35 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5828
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5829
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5830
findMatchString:matchString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5831
    "like findString/indexOfSubCollection, but allowing GLOB match patterns.
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5832
     find matchstring; if found, return the index, if not, return 0.
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5833
     This is a case sensitive match: lower/uppercase are considered different.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5834
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5835
     NOTICE: match-meta character interpretation is like in unix-matching,
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5836
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5837
     NOTICE: this GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5838
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5839
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5840
    ^ self findMatchString:matchString startingAt:1 caseSensitive:true ifAbsent:0
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5841
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5842
    "
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5843
      1234567890123
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5844
     'hello world bla foo baz' findMatchString:'b* '
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5845
    "
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5846
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5847
    "Modified (comment): / 02-03-2019 / 12:21:07 / Claus Gittinger"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5848
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5849
24481
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5850
findMatchString:matchString caseSensitive:caseSensitive
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5851
    "like findString/indexOfSubCollection, but allowing GLOB match patterns.
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5852
     find matchstring; if found, return the index, if not, return 0.
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5853
     This is a case sensitive match: lower/uppercase are considered different.
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5854
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5855
     NOTICE: match-meta character interpretation is like in unix-matching,
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5856
             NOT the ST-80 meaning.
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5857
     NOTICE: this GLOB, which is different from regex matching (see matchesRegex:)
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5858
     NOTICE: the argument is the match pattern"
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5859
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5860
    ^ self findMatchString:matchString startingAt:1 caseSensitive:caseSensitive ifAbsent:0
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5861
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5862
    "
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5863
      1234567890123
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5864
     'hello world bla foo baz' findMatchString:'b* '
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5865
    "
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5866
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5867
    "Modified (comment): / 02-03-2019 / 12:21:07 / Claus Gittinger"
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5868
!
c70408eab4ad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24411
diff changeset
  5869
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5870
findMatchString:matchString startingAt:index
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5871
    "like findString, but allowing GLOB match patterns.
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5872
     find matchstring, starting at index; if found, return the index, if not, return 0.
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5873
     This is a case sensitive match: lower/uppercase are considered different.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5874
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5875
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5876
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5877
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5878
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5879
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5880
    ^ self findMatchString:matchString startingAt:index caseSensitive:true ifAbsent:0
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5881
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  5882
    "Modified (comment): / 02-03-2019 / 12:21:05 / Claus Gittinger"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5883
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5884
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5885
findMatchString:matchString startingAt:index caseSensitive:caseSensitive ifAbsent:exceptionBlock
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5886
    "like findString, but allowing GLOB match patterns.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5887
     find matchstring, starting at index. if found, return the index;
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5888
     if not found, return the result of evaluating exceptionBlock.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5889
     This is a q&d hack - not very efficient.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5890
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5891
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5892
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5893
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5894
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5895
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5896
    |firstChar firstSet
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5897
     startIndex "{ Class: SmallInteger }"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5898
     matchSize  "{ Class: SmallInteger }"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5899
     mySize     "{ Class: SmallInteger }"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5900
     realMatchString lcChar ucChar|
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5901
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5902
    matchSize := matchString size.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5903
    matchSize == 0 ifTrue:[^ index]. "empty string matches"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5904
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5905
    realMatchString := matchString.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5906
    (realMatchString endsWith:$*) ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5907
        realMatchString := realMatchString , '*'.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5908
        matchSize := matchSize + 1
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5909
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5910
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5911
    mySize := self size.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5912
    firstChar := realMatchString at:1.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5913
    firstChar == self class matchEscapeCharacter ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5914
        firstChar := realMatchString at:2.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5915
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5916
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5917
    firstChar asString includesMatchCharacters ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5918
        index to:mySize do:[:col |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5919
            (realMatchString match:self from:col to:mySize caseSensitive:caseSensitive)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5920
            ifTrue:[^ col]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5921
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5922
        ^ exceptionBlock value.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5923
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5924
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5925
    lcChar := firstChar asLowercase.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5926
    ucChar := firstChar asUppercase.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5927
    (caseSensitive not and:[ lcChar ~= ucChar ]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5928
        firstSet := Array with:ucChar with:lcChar.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5929
        startIndex := self indexOfAny:firstSet startingAt:index.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5930
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5931
        startIndex := self indexOf:firstChar startingAt:index.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5932
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5933
    [startIndex == 0] whileFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5934
        (realMatchString match:self from:startIndex to:mySize caseSensitive:caseSensitive)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5935
        ifTrue:[^ startIndex].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5936
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5937
        firstSet notNil ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5938
            startIndex := self indexOfAny:firstSet startingAt:(startIndex + 1).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5939
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5940
            startIndex := self indexOf:firstChar startingAt:(startIndex + 1).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5941
        ].
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5942
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5943
    ^ exceptionBlock value
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5944
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5945
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5946
     'one two three four' findMatchString:'o[nu]'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5947
     'one two three four' findMatchString:'o[nu]' startingAt:3
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5948
     'one two three four one' findMatchString:'ONE' startingAt:3 caseSensitive:false ifAbsent:0
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5949
     'one two three four one' findMatchString:'ONE' startingAt:3 caseSensitive:true ifAbsent:0
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5950
     'one two three four ONE' findMatchString:'O#E' startingAt:1 caseSensitive:false ifAbsent:0
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5951
     'one two three four ONE' findMatchString:'O#E' startingAt:1 caseSensitive:true ifAbsent:0
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5952
      12345678901234567890
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5953
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5954
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5955
    "Modified: 13.9.1997 / 06:31:22 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5956
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5957
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5958
findMatchString:matchString startingAt:index ignoreCase:ignoreCase ifAbsent:exceptionBlock
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5959
    <resource: #obsolete>
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5960
    "like findString, but allowing GLOB match patterns.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5961
     find matchstring, starting at index. if found, return the index;
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5962
     if not found, return the result of evaluating exceptionBlock.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5963
     This is a q&d hack - not very efficient.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5964
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5965
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5966
             NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5967
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5968
     NOTICE: the argument is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5969
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5970
    ^ self
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5971
        findMatchString:matchString startingAt:index caseSensitive:ignoreCase not ifAbsent:exceptionBlock
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5972
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5973
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5974
     'one two three four' findMatchString:'o[nu]'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5975
     'one two three four' findMatchString:'o[nu]' startingAt:3
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5976
     'one two three four one' findMatchString:'ONE' startingAt:3 ignoreCase:true ifAbsent:0
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5977
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5978
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5979
    "Modified: 13.9.1997 / 06:31:22 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5980
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5981
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5982
globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5983
    "taking the receiver as a GLOB pattern,
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5984
     return a corresponding regex pattern.
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5985
     As regex does provide information about the matching substring,
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  5986
     it may be useful to apply a regex after a GLOB match,
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5987
     in order to highlight matching substrings (eg. in a CodeView after a search).
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5988
     If it turns out to be better, we may convert all GLOB searches to regex and use it right away.
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5989
     (currently, it is not sure, if GLOB is not better for most simple searches, as they are encountered
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5990
      in typical real life)"
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5991
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5992
    ^ self species streamContents:[:s |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5993
        |addCharacter|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5994
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5995
        addCharacter :=
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5996
            [:ch |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5997
                ch isLetterOrDigit ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5998
                    s nextPut:$\.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  5999
                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6000
                s nextPut:ch
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6001
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6002
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6003
        (self class matchScanArrayFrom:self) do:[:matchEntry |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6004
            matchEntry isCharacter ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6005
                addCharacter value:matchEntry
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6006
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6007
                matchEntry == #anyString ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6008
                    s nextPutAll:'.*'
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6009
                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6010
                    matchEntry == #any ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6011
                        s nextPut:$.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6012
                    ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6013
                        matchEntry isString ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6014
                            |set min max|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6015
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6016
                            s nextPut:$[.
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6017
                            set := matchEntry "copy sort". "/ already sorted
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6018
                            min := set min.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6019
                            max := set max.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6020
                            set asSet = (min to:max) asSet ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6021
                                addCharacter value:min.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6022
                                s nextPut:$-.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6023
                                addCharacter value:max.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6024
                            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6025
                                set do:addCharacter.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6026
                            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6027
                            s nextPut:$].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6028
                        ] ifFalse:[
22700
d9dee3e51294 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22611
diff changeset
  6029
                            self halt:'funny match entry'.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6030
                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6031
                    ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6032
                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6033
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6034
        ].
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  6035
    ].
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6036
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6037
    "
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6038
     'hello' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6039
     'hello*' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6040
     '*hello*' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6041
     'h###' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6042
     'h[0-9]' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6043
     'h[0-9][0-9][0-9]' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6044
     'h[0-9]*' globPatternAsRegexPattern
19747
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  6045
     'h[-+]*' globPatternAsRegexPattern
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6046
     'h[abc]*' globPatternAsRegexPattern
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6047
     'h[0-9abc]*' globPatternAsRegexPattern
19747
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  6048
     'hello world' matches:'h*w'
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  6049
     'hello world' matchesRegex:('h*w' globPatternAsRegexPattern)
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  6050
     'hello world' matches:'h*d'
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  6051
     'hello world' matchesRegex:('h*d' globPatternAsRegexPattern)
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6052
    "
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6053
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6054
    "Modified: / 03-12-2018 / 15:47:15 / Stefan Vogel"
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6055
!
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  6056
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6057
includesMatchString:matchString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6058
    "like includesString, but allowing GLOB match patterns.
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6059
     find matchstring; if found, return true, false otherwise.
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6060
     This is a case sensitive match: lower/uppercase are considered different.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6061
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6062
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6063
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6064
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6065
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6066
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6067
    ^ (self findMatchString:matchString) ~~ 0
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6068
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6069
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6070
     'hello world' includesMatchString:'h*'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6071
     'hello world' includesMatchString:'h[aeiou]llo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6072
     'hello world' includesMatchString:'wor*'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6073
     'hello world' includesMatchString:'woR*'
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6074
     'menue' includesMatchString:'[mM]enu[Ee]'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6075
     'blamenuebla' includesMatchString:'[mM]enu[Ee]'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6076
     'blaMenuebla' includesMatchString:'[mM]enu[Ee]'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6077
    "
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6078
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6079
    "Modified (comment): / 02-03-2019 / 12:20:58 / Claus Gittinger"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6080
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6081
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6082
includesMatchString:matchString caseSensitive:caseSensitive
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6083
    "like includesString, but allowing GLOB match patterns.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6084
     find matchstring; if found, return true, otherwise return false.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6085
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6086
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6087
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6088
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6089
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6090
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  6091
    ^ (self findMatchString:matchString startingAt:1 caseSensitive:caseSensitive ifAbsent:0) ~~ 0
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6092
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6093
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6094
     'hello world' includesMatchString:'h*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6095
     'hello world' includesMatchString:'h*' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6096
     'Hello world' includesMatchString:'h*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6097
     'Hello world' includesMatchString:'h*' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6098
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6099
     'hello world' includesMatchString:'h[aeiou]llo' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6100
     'hello world' includesMatchString:'h[aeiou]llo' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6101
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6102
     'hello world' includesMatchString:'wor*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6103
     'hello world' includesMatchString:'wor*' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6104
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6105
     'hello world' includesMatchString:'woR*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6106
     'hello world' includesMatchString:'woR*' caseSensitive:false
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6107
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6108
     'menue' includesMatchString:'[mM]enu[Ee]'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6109
     'menue' includesMatchString:'[mM]enu[Ee]' caseSensitive:true
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6110
     'blamenuebla' includesMatchString:'[mM]enu[Ee]'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6111
     'blamenuebla' includesMatchString:'[mM]enu[Ee]' caseSensitive:true
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6112
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6113
     'blaMenuebla' includesMatchString:'[MS]enu[EF]'
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6114
     'blaMenuebla' includesMatchString:'[MS]enu[EF]' caseSensitive:true
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6115
     'blaMenuebla' includesMatchString:'[MS]enu[EF]' caseSensitive:false
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6116
    "
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6117
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6118
    "Modified (comment): / 02-03-2019 / 12:18:57 / Claus Gittinger"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6119
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6120
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6121
match:aString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6122
    "return true if aString matches self, where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6123
     characters $* (to match any string) or $# (to match any character).
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6124
     or [...] to match a set of characters.
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6125
     This is a case sensitive match: lower/uppercase are considered different.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6126
     The escape character is the backQuote.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6127
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6128
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6129
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6130
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6131
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6132
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6133
    ^ self match:aString from:1 to:aString size caseSensitive:true
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6134
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6135
    "
22137
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6136
     '#f#' match:'afc'
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6137
     '#f#' match:'aec'
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6138
     '#f#' match:'ae'
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6139
     '#f#' match:'a'
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6140
     '#f#' match:'f'
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6141
     '#f#' match:'ff'
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6142
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6143
     '\*f*' match:'f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6144
     '\*f*' match:'*f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6145
     '*\*f*' match:'*f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6146
     '*f*' match:'*f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6147
     '*ute*' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6148
     '*uter' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6149
     'uter*' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6150
     '*ute*' match:''
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6151
     '[abcd]*' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6152
     '[abcd]*' match:'komputer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6153
     '*some*compl*ern*' match:'this is some more complicated pattern match'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6154
     '*some*compl*ern*' match:'this is another complicated pattern match'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6155
     '*-hh' match:'anton-h'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6156
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6157
22137
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6158
    "Modified: / 09-06-1998 / 18:50:00 / cg"
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6159
    "Modified (comment): / 29-07-2017 / 14:00:23 / cg"
23791
1ed5a9d17a03 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23783
diff changeset
  6160
    "Modified (comment): / 02-03-2019 / 12:20:48 / Claus Gittinger"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6161
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6162
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6163
match:aString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6164
    "return true if aString matches self, where self may contain GLOB meta-match
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6165
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6166
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6167
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6168
     The escape character is the backQuote.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6169
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6170
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6171
             NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6172
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6173
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6174
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6175
    ^ self match:aString from:1 to:aString size caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6176
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6177
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6178
     '*ute*' match:'COMPUTER' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6179
     '*uter' match:'COMPUTER' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6180
     '[abcd]*' match:'computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6181
     '[abcd]*' match:'Computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6182
     '[a-k]*' match:'komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6183
     '[a-k]*' match:'zomputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6184
     '[a-k]*' match:'Komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6185
     '[a-k]*' match:'Komputer' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6186
     '*some*compl*ern*' match:'this is some more complicated pattern match' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6187
     '*some*compl*ern*' match:'this is another complicated pattern match' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6188
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6189
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6190
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6191
            '[ab]*' match:sym caseSensitive:true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6192
        ]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6193
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6194
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6195
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6196
            '*at:*' match:sym caseSensitive:true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6197
        ]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6198
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6199
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6200
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6201
    "Modified: 2.4.1997 / 17:28:58 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6202
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6203
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6204
match:aString caseSensitive:caseSensitive escapeCharacter:escape
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6205
    "return true if aString matches self, where self may contain GLOB meta-match
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6206
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6207
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6208
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6209
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6210
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6211
             NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6212
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6213
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6214
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6215
    ^ self match:aString from:1 to:aString size caseSensitive:caseSensitive escapeCharacter:escape
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6216
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6217
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6218
     '*ute*' match:'COMPUTER' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6219
     '*uter' match:'COMPUTER' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6220
     '[abcd]*' match:'computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6221
     '[abcd]*' match:'Computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6222
     '[a-k]*' match:'komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6223
     '[a-k]*' match:'zomputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6224
     '[a-k]*' match:'Komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6225
     '[a-k]*' match:'Komputer' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6226
     '*some*compl*ern*' match:'this is some more complicated pattern match' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6227
     '*some*compl*ern*' match:'this is another complicated pattern match' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6228
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6229
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6230
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6231
            '[ab]*' match:sym caseSensitive:true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6232
        ]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6233
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6234
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6235
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6236
            '*at:*' match:sym caseSensitive:true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6237
        ]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6238
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6239
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6240
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6241
    "Modified: 2.4.1997 / 17:28:58 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6242
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6243
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6244
match:aString escapeCharacter:escape
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6245
    "return true if aString matches self, where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6246
     characters $* (to match any string) or $# (to match any character).
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6247
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6248
     Lower/uppercase are considered different.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6249
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6250
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6251
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6252
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6253
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6254
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  6255
    ^ self match:aString from:1 to:aString size caseSensitive:true escapeCharacter:escape
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6256
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6257
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6258
     'a\b\c\*' match:'a\b\c\d'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6259
     'a\b\c\*' match:'a\b\c\d' escapeCharacter:nil
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6260
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6261
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6262
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6263
match:aString from:start to:stop caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6264
    "return true if part of aString matches myself,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6265
     where self may contain GLOB meta-match
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6266
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6267
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6268
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6269
     The escape character is the backQuote.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6270
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6271
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6272
             NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6273
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6274
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6275
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6276
    ^ self
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6277
        match:aString from:start to:stop caseSensitive:caseSensitive
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6278
        escapeCharacter:(self class matchEscapeCharacter)
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6279
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6280
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6281
     '*ute*' match:'12345COMPUTER' from:1 to:5 caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6282
     '*ute*' match:'12345COMPUTER' from:6 to:13 caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6283
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6284
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6285
    "Modified: / 10.11.1998 / 21:43:46 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6286
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6287
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6288
match:aString from:start to:stop caseSensitive:caseSensitive escapeCharacter:escape
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6289
    "return true if part of aString matches myself,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6290
     where self may contain GLOB meta-match
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6291
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6292
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6293
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6294
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6295
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20667
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6296
             NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6297
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6298
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6299
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6300
    |matchScanArray|
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6301
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6302
    "
22137
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6303
     keep the matchScanArray from the most recent matches -
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6304
     avoids parsing the pattern over-and over again,
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6305
     if multiple searches are done with the same pattern.
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6306
    "
20667
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6307
    (PreviousMatches isNil
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6308
    or:[(matchScanArray := PreviousMatches at: self ifAbsent:[nil]) isNil]) ifTrue:[
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6309
        matchScanArray := self class matchScanArrayFrom:self escapeCharacter:escape.
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6310
        matchScanArray isNil ifTrue:[
23459
98958ccb01fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23428
diff changeset
  6311
            ParseWarning raiseRequestErrorString:('CharacterArray [info]: invalid matchpattern: ''%1'' comparing for equality' bindWith:self).
20667
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6312
            ^ self = aString
23459
98958ccb01fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23428
diff changeset
  6313
            "/ ^ false
20667
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6314
        ].
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6315
        PreviousMatches isNil ifTrue:[
22137
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6316
            PreviousMatches := CacheDictionary new:15
20667
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6317
        ].
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6318
        PreviousMatches at:self put:matchScanArray.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6319
    ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6320
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6321
    ^ self class
20667
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6322
        matchScan:matchScanArray
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6323
        from:1 to:matchScanArray size
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6324
        with:aString
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6325
        from:start to:stop
c656db63d50f #TUNING by cg
Claus Gittinger <cg@exept.de>
parents: 20484
diff changeset
  6326
        caseSensitive:caseSensitive
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6327
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6328
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6329
     '*ute*' match:'12345COMPUTER' from:1 to:5 caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6330
     '*ute*' match:'12345COMPUTER' from:6 to:13 caseSensitive:false
23459
98958ccb01fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23428
diff changeset
  6331
     
98958ccb01fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23428
diff changeset
  6332
     '*[12' match:'12345COMPUTER' from:6 to:13 caseSensitive:false -- gives a warning
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6333
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6334
22137
444e7818131e #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 22126
diff changeset
  6335
    "Modified: / 29-07-2017 / 14:01:42 / cg"
23459
98958ccb01fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23428
diff changeset
  6336
    "Modified (comment): / 24-10-2018 / 09:01:31 / Claus Gittinger"
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6337
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6338
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6339
match:aString from:start to:stop ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6340
    <resource: #obsolete>
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6341
    "return true if part of aString matches myself,
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6342
     where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6343
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6344
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6345
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6346
     The escape character is the backQuote.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6347
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6348
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6349
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6350
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6351
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6352
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6353
    ^ self
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6354
        match:aString from:start to:stop caseSensitive:ignoreCase not
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6355
        escapeCharacter:(self class matchEscapeCharacter)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6356
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6357
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6358
     '*ute*' match:'12345COMPUTER' from:1 to:5 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6359
     '*ute*' match:'12345COMPUTER' from:6 to:13 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6360
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6361
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6362
    "Modified: / 10.11.1998 / 21:43:46 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6363
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6364
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6365
match:aString from:start to:stop ignoreCase:ignoreCase escapeCharacter:escape
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6366
    <resource: #obsolete>
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6367
    "return true if part of aString matches myself,
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6368
     where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6369
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6370
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6371
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6372
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6373
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6374
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6375
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6376
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6377
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6378
    ^ self
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6379
        match:aString from:start to:stop
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6380
        caseSensitive:ignoreCase not
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6381
        escapeCharacter:escape
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6382
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6383
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6384
     '*ute*' match:'12345COMPUTER' from:1 to:5 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6385
     '*ute*' match:'12345COMPUTER' from:6 to:13 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6386
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6387
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6388
    "Modified: / 10.11.1998 / 21:43:46 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6389
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6390
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6391
match:aString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6392
    <resource: #obsolete>
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6393
    "return true if aString matches self, where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6394
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6395
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6396
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6397
     The escape character is the backQuote.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6398
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6399
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6400
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6401
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6402
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6403
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6404
    "/ leave it this way, in case a customer has redefined it for performance (for a while)
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  6405
    ^ self match:aString from:1 to:aString size caseSensitive:ignoreCase not
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6406
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6407
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6408
     '*ute*' match:'COMPUTER' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6409
     '*uter' match:'COMPUTER' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6410
     '[abcd]*' match:'computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6411
     '[abcd]*' match:'Computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6412
     '[a-k]*' match:'komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6413
     '[a-k]*' match:'zomputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6414
     '[a-k]*' match:'Komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6415
     '[a-k]*' match:'Komputer' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6416
     '*some*compl*ern*' match:'this is some more complicated pattern match' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6417
     '*some*compl*ern*' match:'this is another complicated pattern match' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6418
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6419
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6420
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6421
            '[ab]*' match:sym ignoreCase:false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6422
        ]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6423
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6424
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6425
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6426
            '*at:*' match:sym ignoreCase:false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6427
        ]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6428
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6429
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6430
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6431
    "Modified: 2.4.1997 / 17:28:58 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6432
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6433
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6434
match:aString ignoreCase:ignoreCase escapeCharacter:escape
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6435
    <resource: #obsolete>
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6436
    "return true if aString matches self, where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6437
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6438
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6439
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6440
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6441
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6442
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6443
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6444
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6445
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  6446
    ^ self match:aString from:1 to:aString size caseSensitive:ignoreCase not escapeCharacter:escape
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6447
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6448
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6449
     '*ute*' match:'COMPUTER' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6450
     '*uter' match:'COMPUTER' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6451
     '[abcd]*' match:'computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6452
     '[abcd]*' match:'Computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6453
     '[a-k]*' match:'komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6454
     '[a-k]*' match:'zomputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6455
     '[a-k]*' match:'Komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6456
     '[a-k]*' match:'Komputer' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6457
     '*some*compl*ern*' match:'this is some more complicated pattern match' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6458
     '*some*compl*ern*' match:'this is another complicated pattern match' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6459
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6460
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6461
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6462
            '[ab]*' match:sym ignoreCase:false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6463
        ]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6464
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6465
     Time millisecondsToRun:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6466
        Symbol allInstancesDo:[:sym |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6467
            '*at:*' match:sym ignoreCase:false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6468
        ]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6469
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6470
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6471
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6472
    "Modified: 2.4.1997 / 17:28:58 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6473
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6474
23287
dfc6e64b5619 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23249
diff changeset
  6475
matches:aGlobPatternString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6476
    "return true if the receiver matches aString, where aPatternString may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6477
     characters $* (to match any string) or $# (to match any character).
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6478
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6479
     Lower/uppercase are considered different.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6480
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6481
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6482
             NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  6483
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6484
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6485
23287
dfc6e64b5619 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23249
diff changeset
  6486
    ^ aGlobPatternString match:self
dfc6e64b5619 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23249
diff changeset
  6487
dfc6e64b5619 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23249
diff changeset
  6488
    "Modified (format): / 18-08-2018 / 20:51:45 / Claus Gittinger"
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6489
!
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6490
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6491
matches:aPatternString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6492
    "return true if the receiver matches aString, where aPatternString may contain GLOB meta-match
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6493
     characters $* (to match any string) or $# (to match any character).
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6494
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6495
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6496
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6497
             NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6498
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6499
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6500
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6501
    ^ aPatternString match:self caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6502
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6503
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6504
matches:aPatternString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6505
    <resource: #obsolete>
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6506
    "return true if the receiver matches aString, where aPatternString may contain GLOB meta-match
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6507
     characters $* (to match any string) or $# (to match any character).
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6508
     or [...] to match a set of characters.
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6509
     Lower/uppercase are considered different.
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6510
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6511
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6512
             NOT the ST-80 meaning.
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6513
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6514
     NOTICE: the receiver is the match pattern"
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6515
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6516
    ^ aPatternString match:self caseSensitive:ignoreCase not
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6517
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  6518
    "Created: / 08-03-2012 / 03:11:11 / cg"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6519
! !
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6520
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  6521
24601
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6522
!CharacterArray methodsFor:'matching - regex'!
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6523
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6524
subExpressionsInRegex:rxString caseSensitive:caseSensitive
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6525
    "return the collection of matching regex-subexpressions.
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6526
     Subexpressions are sub-patterns enclosed in parentheses in the regex.
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6527
     substrings in the receiver.
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6528
     Returns nil, if there is no match.
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6529
     Use this to extract particular parts from the receiver.
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6530
     Refer to `documentation' protocol of RxParser class for details."
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6531
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6532
     |matcher|
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6533
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6534
     matcher := Regex::RxMatcher new initializeFromString:rxString ignoreCase:caseSensitive not.
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6535
     (matcher matches:self) ifTrue:[
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6536
        ^ matcher subexpressions
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6537
     ].
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6538
     "/ no match
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6539
     ^ nil.
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6540
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6541
    "
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6542
     'I am Tim Dalton' subExpressionsInRegex:'I am (.+)' caseSensitive:false   
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6543
     'i am Boris Johnson' subExpressionsInRegex:'I am (.+)' caseSensitive:false  
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6544
     'you are Boris Johnson' subExpressionsInRegex:'(i|you) (am|are) (.+)' caseSensitive:false  
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6545
    "
5da158142cda #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24560
diff changeset
  6546
! !
24557
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
  6547
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6548
!CharacterArray methodsFor:'padded copying'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6549
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6550
centerPaddedTo:newSize
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6551
     "return a new string consisting of the receiver's characters,
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6552
      plus spaces up to length and center the receiver's characters in
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6553
      the resulting string.
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6554
      If the receiver's size is equal or greater than the length argument,
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6555
      the original receiver is returned unchanged."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6556
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6557
     ^ self centerPaddedTo:newSize with:(Character space)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6558
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6559
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6560
     'foo' centerPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6561
     123 printString centerPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6562
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6563
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6564
    "Created: 25.11.1995 / 10:53:57 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6565
!
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6566
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6567
centerPaddedTo:size with:padCharacter
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6568
    "return a new string of length size, which contains the receiver
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6569
     centered (i.e. padded on both sides).
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6570
     Characters are filled with padCharacter.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6571
     If the receiver's size is equal or greater than the length argument,
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6572
     the original receiver is returned unchanged."
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6573
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6574
    |len s|
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6575
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6576
    len := self size.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6577
    (len < size) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6578
        s := self species new:size withAll:padCharacter.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6579
        s replaceFrom:(size - len) // 2  + 1 with:self.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6580
        ^ s
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6581
    ]
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6582
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6583
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6584
     'foo' centerPaddedTo:11 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6585
     'fooBar' centerPaddedTo:5 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6586
     123 printString centerPaddedTo:10 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6587
     (' ' , 123 printString) centerPaddedTo:10 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6588
     (Float pi printString) centerPaddedTo:15 with:(Character space)
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6589
     (Float pi printString) centerPaddedTo:15 with:$-
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6590
     (' ' , Float pi class name) centerPaddedTo:15 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6591
    "
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6592
!
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6593
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6594
decimalPaddedTo:size and:afterPeriod at:decimalCharacter
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6595
    "return a new string of overall length size, which contains the receiver
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6596
     aligned at the decimal-period column and afterPeriod characters to the right
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6597
     of the period. The periodCharacter is passed as arguments (allowing for US and European formats
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6598
     to be padded).
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6599
     If the receiver's size is equal or greater than the length argument,
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6600
     the original receiver is returned unchanged.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6601
     (sounds complicated ? -> see examples below)."
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6602
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6603
    ^ self
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6604
        decimalPaddedTo:size
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6605
        and:afterPeriod
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6606
        at:decimalCharacter
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6607
        withLeft:(Character space)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6608
        right:$0
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6609
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6610
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6611
     '123' decimalPaddedTo:10 and:3 at:$.      -> '   123    '
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6612
     '123' decimalPaddedTo:10 and:3 at:$.      -> '   123.000'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6613
     '123.' decimalPaddedTo:10 and:3 at:$.     -> '   123.000'
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6614
     '123.1' decimalPaddedTo:10 and:3 at:$.    -> '   123.100'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6615
     '123.1' decimalPaddedTo:10 and:3 at:$.    -> '   123.1  '
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6616
     '123.123' decimalPaddedTo:10 and:3 at:$.  -> '   123.123'
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6617
    "
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6618
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6619
    "Created: 23.12.1995 / 13:11:52 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6620
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6621
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6622
decimalPaddedTo:size and:afterPeriod at:decimalCharacter withLeft:leftPadChar right:rightPadChar
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6623
    "return a new string of overall length size, which contains the receiver
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6624
     aligned at the decimal-period column and afterPeriod characters to the right
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6625
     of the period.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6626
     Characters on the left are filled with leftPadChar.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6627
     If rightPadChar is nil, characters on the right are filled with leftPadCharacter too;
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6628
     otherwise, if missing, a decimal point is added and right characters filled with this.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6629
     If the receiver's size is equal or greater than the length argument,
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6630
     the original receiver is returned unchanged.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6631
     (sounds complicated ? -> see examples below)."
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6632
5230
655c21ffe6cc care for negative size of rest-string when decimalPadding
Claus Gittinger <cg@exept.de>
parents: 5221
diff changeset
  6633
    |s idx n rest|
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6634
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6635
    idx := self indexOf:decimalCharacter.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6636
    idx == 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6637
        "/
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6638
        "/ no decimal point found; adjust string to the left of the period column
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6639
        "/
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6640
        rightPadChar isNil ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6641
            s := self , (self species new:afterPeriod + 1 withAll:leftPadChar)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6642
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6643
            s:= self , decimalCharacter asString , (self species new:afterPeriod withAll:rightPadChar).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6644
        ].
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6645
    ] ifFalse:[
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6646
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6647
        "/ the number of after-decimalPoint characters
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6648
        n := self size - idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6649
        rest := afterPeriod - n.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6650
        rest > 0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6651
            s := (self species new:rest withAll:(rightPadChar ? leftPadChar)).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6652
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6653
            s := ''
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6654
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6655
        s := self , s.
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6656
    ].
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6657
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6658
    ^ s leftPaddedTo:size with:leftPadChar
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6659
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6660
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6661
     '123' decimalPaddedTo:10 and:3 at:$. withLeft:(Character space) right:nil     -> '   123    '
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6662
     '123' decimalPaddedTo:10 and:3 at:$. withLeft:(Character space) right:$0      -> '   123.000'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6663
     '123.' decimalPaddedTo:10 and:3 at:$. withLeft:(Character space) right:$0     -> '   123.000'
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6664
     '123.1' decimalPaddedTo:10 and:3 at:$. withLeft:(Character space) right:$0    -> '   123.100'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6665
     '123.1' decimalPaddedTo:10 and:3 at:$. withLeft:(Character space) right:nil   -> '   123.1  '
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6666
     '123.123' decimalPaddedTo:10 and:3 at:$. withLeft:(Character space) right:$0  -> '   123.123'
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6667
    "
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6668
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  6669
    "Modified: 23.12.1995 / 13:08:18 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6670
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6671
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6672
leftPaddedTo:size
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6673
    "return a new string of length size, which contains the receiver
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6674
     right-adjusted (i.e. padded on the left).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6675
     Characters on the left are filled with spaces.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6676
     If the receiver's size is equal or greater than the length argument,
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6677
     the original receiver is returned unchanged."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6678
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6679
    ^ self leftPaddedTo:size with:(Character space)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6680
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6681
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6682
     'foo' leftPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6683
     'fooBar' leftPaddedTo:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6684
     123 printString leftPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6685
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6686
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6687
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6688
paddedTo:newSize
19753
cb9db99978cb #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19747
diff changeset
  6689
     "return a new string consisting of the receiver's characters,
23945
79fc1428a627 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23936
diff changeset
  6690
      plus spaces up to length.
79fc1428a627 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23936
diff changeset
  6691
      If the receiver's size is equal or greater than the length argument,
79fc1428a627 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23936
diff changeset
  6692
      the original receiver is returned unchanged."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6693
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6694
     ^ self paddedTo:newSize with:(Character space)
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6695
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6696
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6697
     'foo' paddedTo:10
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6698
     123 printString paddedTo:10
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  6699
     '12345678901234' paddedTo:10
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6700
    "
23945
79fc1428a627 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23936
diff changeset
  6701
79fc1428a627 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23936
diff changeset
  6702
    "Modified (format): / 21-03-2019 / 12:56:24 / Claus Gittinger"
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
  6703
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
  6704
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6705
!CharacterArray methodsFor:'printing & storing'!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6706
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6707
article
17137
9a31ec4d6489 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17065
diff changeset
  6708
    "return an article string for the receiver.
9a31ec4d6489 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17065
diff changeset
  6709
     The original code only looked at the first character being a vowel;
9a31ec4d6489 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17065
diff changeset
  6710
     this has been enhanced by some heuristics - not perfect, still."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6711
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  6712
    |firstChar secondChar thirdChar|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6713
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6714
    firstChar := (self at:1) asLowercase.
24041
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6715
    ((firstChar isVowel and:[firstChar ~~ $u]) 
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6716
      or:[firstChar == $x]
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6717
    ) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6718
        ^ 'an'
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6719
    ].
17043
4cd789620782 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17024
diff changeset
  6720
4cd789620782 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17024
diff changeset
  6721
    (self size >= 3) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6722
        secondChar := (self at:2) asLowercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6723
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6724
        "/ may need more here...
24041
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6725
        (firstChar == $r 
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6726
          and:[secondChar == $b]
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6727
        ) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6728
            ^ 'an'
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6729
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6730
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6731
        thirdChar := (self at:3) asLowercase.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6732
24041
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6733
        (firstChar == $s 
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6734
          and:[secondChar == $c 
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6735
          and:[thirdChar == $h]]
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6736
        ) ifTrue:[
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6737
            ^ 'a'
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6738
        ].
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6739
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6740
        (firstChar isVowel not
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6741
        and:[(secondChar isVowel or:[secondChar == $y]) not
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6742
        and:[thirdChar isVowel not ]]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6743
            "/ exceptions: 3 non-vowels in a row: looks like an abbreviation
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6744
            (self size > 4) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6745
                (firstChar == $s) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6746
                    ((secondChar == $c and:[thirdChar == $r])
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6747
                    or:[ (secondChar == $t and:[thirdChar == $r]) ]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6748
                        (self at:4) isVowel ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6749
                            ^ 'a'
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6750
                        ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6751
                    ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6752
                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6753
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6754
            "/ an abbreviation; treat x, s as vowels
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6755
            (firstChar == $x or:[ firstChar == $s ]) ifTrue:[^ 'an'].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6756
        ]
17043
4cd789620782 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17024
diff changeset
  6757
    ].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6758
    ^ 'a'
5848
ef81d77ca1ad UTF-8 Stuff
Stefan Vogel <sv@exept.de>
parents: 5843
diff changeset
  6759
ef81d77ca1ad UTF-8 Stuff
Stefan Vogel <sv@exept.de>
parents: 5843
diff changeset
  6760
    "
24041
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6761
     'uboot' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6762
     'xmas' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6763
     'alarm' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6764
     'baby' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6765
     'sql' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6766
     'scr' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6767
     'screen' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6768
     'scrollbar' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6769
     'scrs' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6770
     'cvs' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6771
     'cvssource' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6772
     'symbol' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6773
     'string' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6774
     'rbparser' article.
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6775
     'scheme' article.
19683
81534211fe00 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19682
diff changeset
  6776
    "
81534211fe00 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19682
diff changeset
  6777
81534211fe00 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19682
diff changeset
  6778
    "Modified (comment): / 01-05-2016 / 10:57:25 / cg"
24041
ffac2cc791c3 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 24038
diff changeset
  6779
    "Modified (comment): / 03-04-2019 / 10:08:57 / Claus Gittinger"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6780
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6781
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6782
basicStoreString
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6783
    "return a String for storing myself"
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6784
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6785
    |s n index|
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6786
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6787
    n := self occurrencesOf:$'.
11320
0cf84c372ccf Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11292
diff changeset
  6788
    n ~~ 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6789
        s := self species new:(n + 2 + self size).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6790
        s at:1 put:$'.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6791
        index := 2.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6792
        self do:[:thisChar |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6793
            (thisChar == $') ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6794
                s at:index put:thisChar.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6795
                index := index + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6796
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6797
            s at:index put:thisChar.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6798
            index := index + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6799
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6800
        s at:index put:$'.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6801
        ^ s
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6802
    ].
11320
0cf84c372ccf Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11292
diff changeset
  6803
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6804
    ^ '''' , self , ''''
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6805
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6806
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6807
     '''immutable'' string' asImmutableString basicStoreString
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6808
     'immutable string' asImmutableString basicStoreString
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6809
    "
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6810
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6811
    "Modified: / 14-07-2013 / 19:20:49 / Jan Vrany <jan.vrany@fit.cvut.cz>"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6812
!
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6813
11774
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6814
displayOn:aGCOrStream
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6815
    "Compatibility
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6816
     append a printed desription on some stream (Dolphin,  Squeak)
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6817
     OR:
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6818
     display the receiver in a graphicsContext at 0@0 (ST80).
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6819
     This method allows for any object to be displayed in some view
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6820
     (although the fallBack is to display its printString ...)"
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6821
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6822
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
21540
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6823
    "/ old ST80 means: draw-yourself on a GC.
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6824
    aGCOrStream isStream ifFalse:[
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6825
        ^ super displayOn:aGCOrStream.
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6826
    ].
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6827
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6828
    self storeOn:aGCOrStream.
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6829
e5668ba40af0 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 21468
diff changeset
  6830
    "Modified: / 22-02-2017 / 16:59:25 / cg"
11774
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6831
!
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6832
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6833
printOn:aStream
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6834
    "print the receiver on aStream"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6835
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6836
    aStream nextPutAll:self
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6837
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6838
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6839
printString
13079
111e7e456648 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13073
diff changeset
  6840
    "return a string for printing - that's myself"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6841
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6842
    ^ self
3578
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6843
!
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6844
25189
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6845
printWithCEscapesOn:aStream
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6846
    "append the receiver's characters
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6847
     with all special and unprintable characters replaced by \X-character escapes.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6848
     (similar to the way C-language literal Strings are represented).
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6849
     The resulting string will contain only 7-bit ascii characters.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6850
     Emphasis is not supported.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6851
     The following escapes are generated:
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6852
        \'      single quote character
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6853
        \dQuote double quote character
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6854
        \b      backspace character
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6855
        \r      return character
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6856
        \n      newline character
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6857
        \t      tab character
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6858
        \\      the \ character itself
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6859
        \xnn    two digit hex number defining the characters ascii value
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6860
        \unnnn  four digit hex number defining the characters ascii value
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6861
        \Unnnnnnnn  eight digit hex number defining the characters ascii value
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6862
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6863
     Sigh: this is named completely wrong (opposite naming of withCRs/witoutCRs),
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6864
           but it cannot be changed easily, as these methods are already used heavily
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6865
    "
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6866
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6867
    self hasChangeOfEmphasis ifTrue:[ self error:'emphasis not supported' ].
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6868
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6869
    self do:[:ch |
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6870
        |cp seq|
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6871
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6872
        (ch == $' or:[ch == $" or:[ch == $\]]) ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6873
            aStream nextPut:$\.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6874
            aStream nextPut:ch.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6875
        ] ifFalse:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6876
            (ch codePoint between:32 and:126) ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6877
                aStream nextPut:ch
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6878
            ] ifFalse:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6879
                ch == Character return ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6880
                    seq := '\r'
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6881
                ] ifFalse:[ ch == Character nl ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6882
                    seq := '\n'
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6883
                ] ifFalse:[ ch == Character backspace ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6884
                    seq := '\b'
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6885
                ] ifFalse:[ ch == Character tab ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6886
                    seq := '\t'
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6887
                ] ifFalse:[ ch == $\ ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6888
                    seq := '\\'
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6889
                ] ifFalse:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6890
                    cp := ch codePoint.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6891
                    cp <= 16rFF ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6892
                        seq := '\x' , (cp printStringRadix:16 size:2 fill:$0)
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6893
                    ] ifFalse:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6894
                        cp <= 16rFFFF ifTrue:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6895
                            seq := '\u' , (cp printStringRadix:16 size:4 fill:$0)
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6896
                        ] ifFalse:[
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6897
                            seq := '\U',(cp printStringRadix:16 size:8 fill:$0)
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6898
                        ]
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6899
                    ]
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6900
                ]]]]].
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6901
                aStream nextPutAll:seq
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6902
            ].
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6903
        ].
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6904
    ].
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6905
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6906
    "
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6907
     'c:\foo\bar\baz' printWithCEscapesOn:Transcript.  
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6908
     c'hello\n\tworld' printWithCEscapesOn:Transcript.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6909
     'hello\b\tworld' withoutCEscapes printWithCEscapesOn:Transcript.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6910
     'hello\nworld\na\n\tnice\n\t\tstring' withoutCEscapes printWithCEscapesOn:Transcript.
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6911
     ('hello ',(Character value:16r1234),' world') printWithCEscapesOn:Transcript
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6912
    "
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6913
!
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  6914
3578
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6915
printWithQuotesDoubledOn:aStream
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6916
    "put the raw storeString of myself on aStream"
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6917
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6918
    self do:[:thisChar |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6919
        (thisChar == $') ifTrue:[aStream nextPut:thisChar].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6920
        aStream nextPut:thisChar
3578
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6921
    ]
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6922
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6923
    "Modified: / 15.6.1998 / 17:21:17 / cg"
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6924
    "Created: / 15.6.1998 / 17:22:13 / cg"
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6925
!
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6926
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6927
printXmlQuotedOn:aStream
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6928
    "convert aString to a valid XML string
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6929
     that can be used for XML attributes.
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6930
     Can also be used for XML text, but better use #printXmlTextQuotedOn:.
23551
0395460b8c89 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23549
diff changeset
  6931
     Various senders expect, that the output is ISO-8859-1 compatible
0395460b8c89 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23549
diff changeset
  6932
     (they don't care for encoding), so for now, we always generate 8-bit chars.
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6933
     TODO: care for 16bit UNICODE string and escape chars ..."
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6934
23548
28f31f30a404 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23459
diff changeset
  6935
    <resource: #todo>
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6936
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6937
    self do:[:eachChar |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6938
        eachChar == $< ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6939
            aStream nextPutAll:'&lt;'     "mapping needed for xml text"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6940
        ] ifFalse:[ eachChar == $& ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6941
            aStream nextPutAll:'&amp;'    "mapping needed for all"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6942
        ] ifFalse:[ eachChar == $> ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6943
            aStream nextPutAll:'&gt;'     "mapping needed for comments"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6944
        ] ifFalse:[ eachChar == $' ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6945
            aStream nextPutAll:'&apos;'   "mapping needed for attributes"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6946
        ] ifFalse:[ eachChar == $" ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6947
            aStream nextPutAll:'&quot;'   "mapping needed for attributes"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6948
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6949
            |codePoint|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6950
            codePoint := eachChar codePoint.
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6951
            (codePoint < 16r20 
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6952
             or:[codePoint >= 16r7F 
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6953
                 and:[codePoint <= 16r9F 
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6954
                      or:[codePoint > 16rFF] "for now, always make sure, that output is ISO-8859-1 compatible"]
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6955
            ]) ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6956
                aStream nextPutAll:'&#'.
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6957
                codePoint printOn:aStream base:16.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6958
                aStream nextPut:$;.
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6959
            ] ifFalse:[
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6960
                aStream nextPut:eachChar
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6961
            ].
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6962
        ]]]]]
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6963
    ].
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6964
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6965
    "Modified: / 03-12-2018 / 15:21:27 / Stefan Vogel"
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6966
!
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6967
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6968
printXmlTextQuotedOn:aStream
23290
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  6969
    <resource: #todo>
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6970
    "convert aString to a valid XML string
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6971
     that can be used for XML text.
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6972
     Here line formatting characters are not escaped.
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6973
     For XML text (as opposed to XML attribute), $' and $"" need
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6974
     not to be transliterated (see https://www.w3.org/TR/xml Section 2.4).
23551
0395460b8c89 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23549
diff changeset
  6975
     Various senders expect, that the output is ISO-8859-1 compatible
0395460b8c89 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 23549
diff changeset
  6976
     (they don't care for encoding), so for now, we always generate 8-bit chars.
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6977
     TODO: care for 16bit UNICODE string and escape chars 
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6978
            - but we need to know the XML file encoding"
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6979
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6980
    self do:[:eachChar |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6981
        eachChar == $< ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6982
            aStream nextPutAll:'&lt;'     "mapping needed for xml text"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6983
        ] ifFalse:[ eachChar == $& ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6984
            aStream nextPutAll:'&amp;'    "mapping needed for all"
23290
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  6985
        ] ifFalse:[ eachChar == $> ifTrue:[
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6986
            aStream nextPutAll:'&gt;'     "mapping needed only for ]]>"
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6987
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6988
            |codePoint|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6989
            codePoint := eachChar codePoint.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6990
            ((codePoint < 16r20 and:[codePoint ~~ 9 and:[codePoint ~~ 10 and:[codePoint ~~ 13]]])
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6991
             or:[codePoint >= 16r7F 
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6992
                 and:[codePoint <= 16r9F 
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6993
                      or:[codePoint > 16rFF] "for now, always make sure, that output is ISO-8859-1 compatible"]
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  6994
            ]) ifTrue:[
23321
922598344f5b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23311
diff changeset
  6995
                aStream nextPutAll:'&#x'.
23290
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  6996
                codePoint printOn:aStream base:16.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  6997
                aStream nextPut:$;.
23549
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6998
            ] ifFalse:[
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  6999
                aStream nextPut:eachChar
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  7000
            ].
89ea899d07c7 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 23548
diff changeset
  7001
        ]]]
23290
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7002
    ].
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7003
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7004
    "
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7005
     String streamContents:[:s|'< & >' printXmlTextQuotedOn:s]
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7006
     String streamContents:[:s|'< & >',(Character value:7) printXmlTextQuotedOn:s]
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7007
     String streamContents:[:s|'< & >',(Character value:129) printXmlTextQuotedOn:s]
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7008
     String streamContents:[:s|'< & >',(Character value:1000) printXmlTextQuotedOn:s]
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7009
    "
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7010
23321
922598344f5b #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23311
diff changeset
  7011
    "Modified: / 30-08-2018 / 22:39:00 / Claus Gittinger"
23552
7b5d3ccc69af #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 23551
diff changeset
  7012
    "Modified: / 03-12-2018 / 15:21:18 / Stefan Vogel"
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  7013
!
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  7014
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  7015
xmlQuotedPrintString
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7016
    "convert aString to a valid XML string
23241
af9e126e2855 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23234
diff changeset
  7017
     that can be used for attributes, text, comments an PIs"
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  7018
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  7019
    ^ String streamContents:[:s|
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7020
        self printXmlQuotedOn:s
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  7021
    ].
23241
af9e126e2855 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23234
diff changeset
  7022
af9e126e2855 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23234
diff changeset
  7023
    "Modified (comment): / 28-07-2018 / 11:11:51 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7024
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7025
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  7026
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7027
!CharacterArray methodsFor:'queries'!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7028
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7029
argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7030
    "treating the receiver as a message selector, return how many arguments would it take (ANSI)"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7031
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7032
    |binopChars|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7033
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7034
    (self size <= Method maxBinarySelectorSize) ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7035
        binopChars := Method binarySelectorCharacters.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7036
        (self conform:[:eachChar | (binopChars includes:eachChar)]) ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7037
            ^ 1
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7038
        ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7039
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7040
    ^ self occurrencesOf:$:
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7041
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7042
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7043
     'foo:bar:' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7044
     #foo:bar: argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7045
     'hello' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7046
     '+' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7047
     '++' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7048
     '+++' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7049
     '|' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7050
     '?' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7051
     '_' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7052
     '_:' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7053
     '_:_:' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7054
     '<->' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7055
     '<' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7056
     #'<' argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7057
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7058
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7059
    "Modified (comment): / 06-02-2017 / 13:48:57 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7060
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7061
4429
564b0fd9168e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
  7062
bitsPerCharacter
18662
3ad440593060 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18657
diff changeset
  7063
    "return the underlying string's bitsPerCharacter
4429
564b0fd9168e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
  7064
     (i.e. is it a regular String or a TwoByteString)"
564b0fd9168e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
  7065
8457
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7066
    |string max|
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7067
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7068
    (string := self string) ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7069
        ^ string bitsPerCharacter
8457
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7070
    ].
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7071
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7072
    max := 8.
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7073
    self do:[:eachCharacter |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7074
        max := max max:(eachCharacter bitsPerCharacter)
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7075
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7076
    ^ max
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7077
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7078
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7079
     'hello' bitsPerCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7080
     'hello' asText allBold bitsPerCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7081
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7082
!
8457
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  7083
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7084
bytesPerCharacter
23971
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7085
    "return the underlying string's bytesPerCharacter
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7086
     (i.e. is it a regular String or a TwoByteString)"
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7087
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7088
    |string max|
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7089
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7090
    (string := self string) ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7091
        ^ string bytesPerCharacter
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7092
    ].
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7093
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7094
    max := 1.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7095
    self do:[:eachCharacter |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7096
        max := max max:(eachCharacter bytesPerCharacter)
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7097
    ].
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7098
    ^ max
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7099
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7100
    "
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7101
     'hello' bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7102
     'hello' asUnicode16String bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7103
     'hello' asText allBold bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7104
    "
23971
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7105
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7106
    "Modified (comment): / 25-03-2019 / 16:24:02 / Claus Gittinger"
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7107
!
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7108
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7109
bytesPerCharacterNeeded
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7110
    "return the actual underlying string's required bytesPerCharacter
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7111
     (i.e. checks if all characters really need that depth)"
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7112
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7113
    |string max mySize|
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7114
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7115
    (string := self string) ~~ self ifTrue:[
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7116
        ^ string bytesPerCharacterNeeded
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7117
    ].
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7118
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7119
    mySize := self bytesPerCharacter. 
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7120
    
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7121
    max := 1.
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7122
    self do:[:eachCharacter |
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7123
        max := max max:(eachCharacter bytesPerCharacter).
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7124
        max == mySize ifTrue:[^ max].
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7125
    ].
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7126
    ^ max
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7127
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7128
    "
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7129
     'hello' bytesPerCharacter       -> 1
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7130
     'hello' bytesPerCharacterNeeded -> 1
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7131
     
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7132
     'hello' asUnicode16String bytesPerCharacter       -> 2
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7133
     'hello' asUnicode16String bytesPerCharacterNeeded -> 1
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7134
    "
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7135
1443e8e91a1b #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 23945
diff changeset
  7136
    "Created: / 25-03-2019 / 16:22:00 / Claus Gittinger"
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7137
!
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  7138
24831
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7139
camelCaseSeparatedWordsDo:aBlock
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7140
    |state newState in out ch part|
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7141
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7142
    in := self readStream.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7143
    out := '' writeStream.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7144
    [in atEnd] whileFalse:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7145
        ch := in next.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7146
        (ch isDigit or:[ch == $_]) ifFalse:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7147
            newState := ch isUppercase.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7148
        ].
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7149
        (newState ~~ state) ifTrue:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7150
            newState == true ifTrue:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7151
                "/ going from lower- to uppercase
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7152
                part := out contents.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7153
                part notEmpty ifTrue:[ aBlock value:part ].
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7154
                out :=  '' writeStream.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7155
                out nextPut:ch.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7156
                state := newState.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7157
            ] ifFalse:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7158
                "/ going upper- to lowercase
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7159
                out size <= 1 ifTrue:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7160
                    out nextPut:ch.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7161
                ] ifFalse:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7162
                    |prev|
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7163
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7164
                    prev := out contents.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7165
                    aBlock value:(prev copyButLast).
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7166
                    out := '' writeStream.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7167
                    out nextPut:prev last.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7168
                    out nextPut:ch.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7169
                ].    
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7170
                state := newState.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7171
            ].    
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7172
        ] ifFalse:[
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7173
            out nextPut:ch.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7174
        ].    
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7175
    ].
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7176
    part := out contents.
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7177
    part notEmpty ifTrue:[ aBlock value:part ].
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7178
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7179
    "
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7180
     'HelloWorld' camelCaseSeparatedWordsDo:[:w | Transcript showCR:w]
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7181
     'abcDef'     camelCaseSeparatedWordsDo:[:w | Transcript showCR:w]
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7182
     'UTFEncoder' camelCaseSeparatedWordsDo:[:w | Transcript showCR:w]
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7183
     'JisEncoder' camelCaseSeparatedWordsDo:[:w | Transcript showCR:w]
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7184
     'JISEncode'  camelCaseSeparatedWordsDo:[:w | Transcript showCR:w]
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7185
    "
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7186
!
4625fcc17897 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24774
diff changeset
  7187
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7188
characterSize
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7189
    "answer the size in bits of my largest character (actually only 7, 8, 16 or 32)"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7190
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7191
    |string max
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7192
     sz "{ Class:SmallInteger}" |
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7193
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7194
    (string := self string) ~~ self ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7195
        ^ string characterSize.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7196
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7197
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7198
    sz := self size.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7199
    max := 7.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7200
    1 to:sz do:[:idx |
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7201
        |thisSize|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7202
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7203
        thisSize := (self at:idx) characterSize.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7204
        thisSize > max ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7205
            max := thisSize.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7206
            max == 32 ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7207
                "shortcut: we know, that max size is 32"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7208
                ^ 32.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7209
            ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7210
        ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7211
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7212
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7213
    ^ max.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7214
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7215
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7216
     'hello' characterSize
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7217
     'hello' asUnicode32String characterSize
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7218
     'helloü' asUnicode32String characterSize
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7219
     'hello' asText allBold characterSize
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7220
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7221
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7222
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7223
contains8BitCharacters
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7224
    <resource: #obsolete>
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7225
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7226
    ^ self containsNon7BitAscii
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7227
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7228
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7229
containsNon7BitAscii
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7230
    "return true, if the underlying string contains 8BitCharacters (or widers)
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7231
     (i.e. if it is non-ascii)"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7232
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7233
    |string
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7234
     sz "{ Class:SmallInteger }"|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7235
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7236
    (string := self string) ~~ self ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7237
        ^ string containsNon7BitAscii
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7238
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7239
    sz := self size.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7240
    1 to:sz do:[:idx|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7241
        (self at:idx) codePoint > 16r7F ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7242
            ^ true.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7243
        ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7244
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7245
    ^ false.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7246
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7247
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7248
     'hello' asUnicode32String containsNon7BitAscii
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7249
     'hello üöä' asUnicode32String containsNon7BitAscii
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7250
     'hello' asUnicode32String asText allBold containsNon7BitAscii
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7251
     'hello üö' asUnicode32String asText allBold containsNon7BitAscii
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7252
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7253
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7254
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7255
containsNon8BitElements
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7256
    "return true, if the underlying string contains elements larger than a single byte"
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7257
21322
30f2495f90d3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21318
diff changeset
  7258
    |string sz "{ Class:SmallInteger }"|
30f2495f90d3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21318
diff changeset
  7259
30f2495f90d3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21318
diff changeset
  7260
    (string := self string) ~~ self ifTrue:[
30f2495f90d3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21318
diff changeset
  7261
        ^ string containsNon8BitElements
30f2495f90d3 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 21318
diff changeset
  7262
    ].
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7263
    sz := self size.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7264
    1 to:sz do:[:idx|
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7265
        (self at:idx) codePoint > 16rFF ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7266
            ^ true.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7267
        ].
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7268
    ].
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7269
    ^ false.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7270
!
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  7271
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7272
continuesWith:aString startingAt:startIndex
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7273
    "return true, if the receiver beginning at startIndex
22783
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7274
     contains the characters in aString.
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7275
     Returns false if the search reaches the end of the receiver 
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7276
     before all characters have been compared."
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7277
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7278
    |sz  "{Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7279
     idx "{Class: SmallInteger }"|
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7280
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7281
    sz := aString size.
22783
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7282
    (startIndex + sz - 1) > self size ifTrue:[^ false].
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7283
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7284
    idx := startIndex.
22783
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7285
    
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7286
    1 to:sz do:[:i |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7287
        (self at:idx) ~~ (aString at:i) ifTrue:[^ false].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7288
        idx := idx + 1
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7289
    ].
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7290
    ^ true
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7291
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7292
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7293
     'hello world' continuesWith:'world' startingAt:6
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7294
     'hello world' continuesWith:'world' startingAt:7
22783
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7295
     'hello' continuesWith:'llo' startingAt:3
1c53fd35eefd #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 22700
diff changeset
  7296
     'hello' continuesWith:'llow' startingAt:3
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7297
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7298
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7299
    "Created: 12.5.1996 / 15:46:40 / cg"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7300
    "Modified: 26.7.1996 / 19:08:36 / cg"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7301
!
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7302
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7303
countWords
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7304
    "return the number of words, which are separated by separators"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7305
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7306
    |tally "{ Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7307
     start "{ Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7308
     mySize "{ Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7309
     stop ch|
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7310
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7311
    tally := 0.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7312
    start := 1.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7313
    mySize := self size.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7314
    [start <= mySize] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7315
        ch := self at:start.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7316
        ch isSeparator ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7317
            start := start + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7318
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7319
            stop := self indexOfSeparatorStartingAt:start.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7320
            (stop == 0) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7321
                stop := mySize + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7322
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7323
            tally := tally + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7324
            start := stop
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7325
        ]
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7326
    ].
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7327
    ^ tally
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7328
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7329
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7330
     'hello world isnt this nice' countWords'
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7331
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7332
!
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7333
11788
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  7334
defaultElement
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  7335
    ^ Character space
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  7336
!
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  7337
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7338
encoding
1311
367f740d21e7 commentary
Claus Gittinger <cg@exept.de>
parents: 1308
diff changeset
  7339
    "return the strings encoding, as a symbol.
7982
0412a26c4621 encoding now unicode
Claus Gittinger <cg@exept.de>
parents: 7977
diff changeset
  7340
     Here, by default, we assume unicode-encoding.
20006
d02e5ecd17af #OTHER by mawalch
mawalch
parents: 19961
diff changeset
  7341
     Notice, that ISO-8859-1 is a true subset of unicode,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7342
     and that singleByteStrings are therefore both unicode AND
7982
0412a26c4621 encoding now unicode
Claus Gittinger <cg@exept.de>
parents: 7977
diff changeset
  7343
     8859-1 encoded."
0412a26c4621 encoding now unicode
Claus Gittinger <cg@exept.de>
parents: 7977
diff changeset
  7344
23290
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7345
    ^ #'iso10646-1'.
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7346
    "/ ^ #unicode
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7347
af8380fdd678 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23287
diff changeset
  7348
    "Modified: / 22-08-2018 / 09:30:16 / Claus Gittinger"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7349
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7350
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  7351
hasChangeOfEmphasis
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  7352
    "return true, if the receiver contains non-empty emphasis information
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  7353
     i.e. any non-normal (=emphasized) characters"
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  7354
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  7355
    ^ false
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  7356
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7357
    "Created: 12.5.1996 / 12:31:39 / cg"
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  7358
!
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  7359
7995
8ddbb403d67b +hasIcon and hasImage for LabelAndIcon compatibility
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
  7360
hasIcon
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  7361
    "for LabelAndIcon compatibility"
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  7362
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7363
    ^ false
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7364
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7365
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7366
hasImage
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7367
    "for LabelAndIcon compatibility"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7368
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7369
    ^ false
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7370
!
7995
8ddbb403d67b +hasIcon and hasImage for LabelAndIcon compatibility
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
  7371
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7372
heightOn:aGC
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  7373
    "return the size of the receiver in device units if displayed on aGC"
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7374
20221
6e910b6733bb #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20194
diff changeset
  7375
    ^ aGC deviceFont heightOf:self      "font is already a device font"
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7376
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7377
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7378
     'hello world' heightOn:(View new)
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7379
    "
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7380
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7381
    "Created: 12.5.1996 / 20:09:29 / cg"
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7382
    "Modified: 12.5.1996 / 20:32:05 / cg"
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7383
!
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7384
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7385
isAlphaNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7386
    "return true, if the receiver is some alphanumeric word;
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7387
     i.e. consists of a letter followed by letters or digits."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7388
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7389
    self isEmpty ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7390
        "mhmh what is this ?"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7391
        ^ false
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7392
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7393
    (self at:1) isLetter ifFalse:[^ false].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7394
    ^ self conform:[:char | char isLetterOrDigit].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7395
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7396
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7397
     'helloWorld' isAlphaNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7398
     'foo1234' isAlphaNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7399
     'f1234' isAlphaNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7400
     '1234' isAlphaNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7401
     '+' isAlphaNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7402
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7403
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7404
    "Modified: / 13-10-2006 / 12:53:49 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7405
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7406
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7407
isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7408
    "treating the receiver as a message selector, return true if it's a binary selector.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7409
     Notice, that st/x does not have a size <= 2 limit for unaries"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7410
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7411
    |binopChars|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7412
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7413
    (self size > Method maxBinarySelectorSize) ifTrue:[^ false].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7414
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7415
    binopChars := Method binarySelectorCharacters.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7416
    ^ (self conform:[:char | (binopChars includes:char)])
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7417
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7418
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7419
     'foo:bar:' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7420
     #foo:bar: isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7421
     'hello' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7422
     '+' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7423
     '|' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7424
     '?' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7425
     ':' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7426
     'a:' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7427
     '->' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7428
     '<->' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7429
     '::' isBinarySelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7430
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7431
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7432
    "Modified: / 04-01-1997 / 14:16:14 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7433
    "Modified (comment): / 13-02-2017 / 19:57:29 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7434
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7435
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7436
isBlank
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7437
    "return true, if the receiver contains spaces only"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7438
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7439
    ^ self size == 0 or:[(self contains:[:char | char ~~ Character space]) not]
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7440
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7441
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7442
     '' isBlank
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7443
     '' asUnicode16String isBlank
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7444
     '   a    ' isBlank
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7445
     '        ' isBlank
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7446
     '        ' asUnicode16String isBlank
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7447
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7448
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7449
    "Modified (comment): / 14-09-2018 / 10:04:18 / Stefan Vogel"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7450
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7451
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7452
isInfix
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7453
    "return true, if the receiver is a binary message selector"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7454
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7455
    ^ self first isLetterOrDigit not
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7456
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7457
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7458
     #at:put: isInfix
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7459
     #at: isInfix
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7460
     #+ isInfix
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7461
     #size isInfix
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7462
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7463
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7464
    "Created: / 1.11.1997 / 12:34:55 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7465
    "Modified: / 1.11.1997 / 12:36:37 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7466
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7467
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7468
isKeyword
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7469
    "return true, if the receiver is a keyword message selector.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7470
     This is a quick check, which only looks at the last character.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7471
     Should only be used, if we already know that the receiver forms a valid selector.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7472
     To check an arbitrary string, use isKeywordSelector.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7473
     Bad naming, but compatibility is asking for it."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7474
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7475
    ^ self last == $:
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7476
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7477
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7478
     #at:put: isKeyword
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7479
     #at: isKeyword
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7480
     #+ isKeyword
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7481
     #size isKeyword
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7482
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7483
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7484
    "Created: / 01-11-1997 / 12:34:55 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7485
    "Modified (comment): / 30-04-2016 / 18:19:11 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7486
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7487
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7488
isKeywordSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7489
    "return true, iff there are only alphanumeric or underline characters separated by colons.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7490
     Must end with a colon.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7491
     You can use this to check an arbitrary string for being valid as a keyword.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7492
     If you have a valid selector at hand, and need to know if it is a keyword or not,
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7493
     use #isKeyword, which is much faster."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7494
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7495
    |state|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7496
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7497
    (self size == 0) ifTrue:[^ false].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7498
    (self last == $:) ifFalse:[^ false].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7499
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7500
    state := #initial.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7501
    self do:[:char |
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7502
        (state == #initial or:[ state == #gotColon]) ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7503
            (char isLetterOrUnderline) ifFalse:[^ false].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7504
            state := #gotCharacter.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7505
        ] ifFalse:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7506
            char == $: ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7507
                state := #gotColon.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7508
            ] ifFalse:[
24254
0de83c555898 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24250
diff changeset
  7509
                (char isLetterOrDigitOrUnderline) ifFalse:[^ false].
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7510
            ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7511
        ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7512
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7513
    ^ state == #gotColon.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7514
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7515
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7516
     self assert:(':' isKeywordSelector not).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7517
     self assert:(':a' isKeywordSelector not).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7518
     self assert:('1:' isKeywordSelector not).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7519
     self assert:('a:' isKeywordSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7520
     self assert:('_:' isKeywordSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7521
     self assert:('_a:' isKeywordSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7522
     self assert:('_1:' isKeywordSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7523
     self assert:('_1::' isKeywordSelector not).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7524
     self assert:('_:_:' isKeywordSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7525
     self assert:('a:b:' isKeywordSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7526
     self assert:('aa:bb:' isKeywordSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7527
     self assert:('aa:bb:a' isKeywordSelector not).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7528
     self assert:('1:2:' isKeywordSelector not).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7529
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7530
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7531
    "Modified (comment): / 30-04-2016 / 18:20:14 / cg"
24254
0de83c555898 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24250
diff changeset
  7532
    "Modified: / 05-06-2019 / 17:05:53 / Claus Gittinger"
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7533
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7534
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7535
isLowercaseFirst
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7536
    "return true, if the first character is a lowercase character."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7537
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7538
    ^ self size ~~ 0 and:[ self first isLowercase ]
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7539
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7540
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7541
     'helloWorld' isLowercaseFirst
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7542
     'HelloWorld' isLowercaseFirst
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7543
    "
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7544
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7545
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7546
isNameSpaceSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7547
    "Answer true if the receiver contains chars which form a nameSpace selector name.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7548
     These are of the form ':<ns>::<sel>', where ns is the NameSpace and sel is the regular selector.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7549
     For example, the #+ selector as seen by the Foo namespace would be actually #':Foo::+'.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7550
     This special format (a symbol starting with a colon) was chosen, because almost every other selector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7551
     is legal, and this can be checked quickly by just looking at the first character.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7552
     You cannot easily change this algorithm here, as it is also known by the VM's lookup function."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7553
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7554
    (self at:1) == $: ifFalse:[^ false].
24120
1857df80bf3c #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24085
diff changeset
  7555
    ^ (self indexOfSubCollection:'::' startingAt:3 ifAbsent:0 caseSensitive:true) ~~ 0.
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7556
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7557
    "test:
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7558
     self assert:('+' isNameSpaceSelector) not.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7559
     self assert:(':+' isNameSpaceSelector) not.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7560
     self assert:(':Foo:+' isNameSpaceSelector) not.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7561
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7562
     self assert:(':Foo::+' isNameSpaceSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7563
     self assert:(':Foo::bar:baz:' isNameSpaceSelector).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7564
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7565
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7566
    "Created: / 05-03-2007 / 11:35:31 / cg"
24120
1857df80bf3c #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 24085
diff changeset
  7567
    "Modified: / 08-05-2019 / 14:41:30 / Stefan Vogel"
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7568
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7569
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7570
isNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7571
    "return true, if the receiver is some numeric word;
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7572
     i.e. consists only of digits."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7573
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7574
    self size == 0 ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7575
        ^ false
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7576
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7577
    ^ self conform:[:char | char isDigit]
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7578
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7579
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7580
     'helloWorld' isNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7581
     'foo1234' isNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7582
     'f1234' isNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7583
     '1234' isNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7584
     '+' isNumeric
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7585
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7586
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7587
    "Modified: / 13-10-2006 / 12:54:12 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7588
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7589
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7590
isUppercaseFirst
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7591
    "return true, if the first character is an uppercase character."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7592
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7593
    ^ self size ~~ 0 and:[ self first isUppercase ]
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7594
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7595
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7596
     'helloWorld' isUppercaseFirst
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7597
     'HelloWorld' isUppercaseFirst
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7598
    "
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7599
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  7600
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7601
isValidSmalltalkIdentifier
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7602
    "return true, if the receiver's characters make up a valid smalltalk identifier"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7603
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7604
    |scanner tok|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7605
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7606
    scanner := Compiler new.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7607
    scanner source:(self readStream).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7608
    ParseError handle:[:ex |
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7609
        tok := nil.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7610
    ] do:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7611
        tok := scanner nextToken.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7612
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7613
    tok ~~ #Identifier ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7614
        ^ false
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7615
    ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7616
    scanner tokenPosition == 1 ifFalse:[^ false].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7617
    ^ scanner sourceStream atEnd.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7618
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7619
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7620
     'foo' isValidSmalltalkIdentifier
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7621
     '1foo' isValidSmalltalkIdentifier
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7622
     '_foo' isValidSmalltalkIdentifier
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7623
     '_foo_bar_' isValidSmalltalkIdentifier
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7624
     'foo ' isValidSmalltalkIdentifier
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7625
     ' foo' isValidSmalltalkIdentifier
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7626
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7627
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7628
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7629
isWhitespace
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7630
    "return true, if the receiver is empty or contains only whitespace."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7631
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7632
    ^ (self indexOfNonSeparatorStartingAt:1) == 0
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7633
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7634
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7635
     '' isWhitespace
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7636
     '   ' isWhitespace
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7637
     '   \    \' withCRs isWhitespace
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7638
     '   a\    \' withCRs isWhitespace
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7639
     '   \    \a' withCRs isWhitespace
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7640
     'a   \    \a' withCRs isWhitespace
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7641
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7642
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7643
    "Created: / 01-03-2017 / 15:24:53 / cg"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7644
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7645
15773
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7646
keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7647
    "assuming the receiver is a keyword message selector,
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7648
     return the individual keywords (i.e. break it up at colons)
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7649
     and return these as a collection.
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7650
     For binary and unary selectors, the result may be nonsense (an array containing the receiver)."
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7651
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7652
    |coll s part|
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7653
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7654
    coll := OrderedCollection new.
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7655
    s := ReadStream on:self.
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7656
    [s atEnd] whileFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7657
        part := s through:$:.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7658
        coll add:part
15773
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7659
    ].
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7660
    ^ coll asArray
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7661
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7662
    "
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7663
     #at:put: keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7664
     #at: keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7665
     #+ keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7666
     #size keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7667
    "
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7668
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7669
    "Modified (Comment): / 30-06-2011 / 17:46:21 / cg"
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7670
!
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  7671
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7672
knownAsSymbol
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7673
    "for now, only single character strings are allowed as symbols.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7674
     This method is redefined in String."
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7675
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7676
    ^ false
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7677
!
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7678
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7679
leftIndent
23663
5ec6be830a5f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23660
diff changeset
  7680
    "if the receiver starts with whiteSpace, return the number of whiteSpace chars
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7681
     at the left - otherwise, return 0.
23663
5ec6be830a5f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23660
diff changeset
  7682
     If the receiver consists of whiteSpace only, return the receiver's size."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7683
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7684
    |index "{Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7685
     end   "{Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7686
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7687
    index := 1.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7688
    end := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7689
    [index <= end] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7690
        (self at:index) isSeparator ifFalse:[^ index - 1].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  7691
        index := index + 1
8350
d9aaa0c937cb +isValidSmalltalkIdentifier
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  7692
    ].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7693
    ^ end
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7694
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7695
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7696
     '    hello' leftIndent
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7697
     'foo      ' leftIndent
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7698
     '         ' leftIndent
23663
5ec6be830a5f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23660
diff changeset
  7699
     ((Character tab),(Character tab),'foo') leftIndent
5ec6be830a5f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23660
diff changeset
  7700
    "
5ec6be830a5f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23660
diff changeset
  7701
5ec6be830a5f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23660
diff changeset
  7702
    "Modified: / 20-04-1996 / 19:28:43 / cg"
5ec6be830a5f #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23660
diff changeset
  7703
    "Modified (comment): / 05-02-2019 / 11:22:57 / Claus Gittinger"
8350
d9aaa0c937cb +isValidSmalltalkIdentifier
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  7704
!
d9aaa0c937cb +isValidSmalltalkIdentifier
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  7705
10437
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7706
nameSpaceSelectorParts
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7707
    "Answer the namespace and baseSelector parts of a namespace selector.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7708
     Namespace selectors are those generated by sends from a method in a different
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7709
     namespace; they are prefixed by ':'<ns>'::'.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7710
     You cannot easily change this algorithm here, as it is also known by the VM's lookup function.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7711
     Experimental"
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7712
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7713
    |nsPart selPart idx|
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7714
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7715
    (self at:1) == $: ifFalse:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7716
    idx := self indexOf:$: startingAt:3.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7717
    idx == 0 ifTrue:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7718
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7719
    (idx+2 > self size) ifTrue:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7720
    (self at:idx+1) == $: ifFalse:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7721
    nsPart := self copyFrom:2 to:idx-1.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7722
    selPart := self copyFrom:idx+2.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7723
    ^ Array with:nsPart with:selPart
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7724
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7725
    "test:
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7726
     self assert:('+' nameSpaceSelectorParts) = #('' '+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7727
     self assert:(':+' nameSpaceSelectorParts) = #('' ':+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7728
     self assert:(':Foo:+' nameSpaceSelectorParts) = #('' ':Foo:+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7729
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7730
     self assert:(':Foo::+' nameSpaceSelectorParts) = #('Foo' '+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7731
     self assert:(':Foo::bar:baz:' nameSpaceSelectorParts) = #('Foo' 'bar:baz:').
10437
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7732
    "
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7733
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7734
    "Created: / 05-03-2007 / 17:16:58 / cg"
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7735
    "Modified: / 06-03-2007 / 11:51:15 / cg"
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7736
!
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  7737
23701
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7738
numArgs
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7739
    <resource: #obsolete>
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7740
    "treating the receiver as a message selector, return how many arguments would it take.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7741
     Please use argumentCount for ANSI compatibility."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7742
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7743
    ^ self argumentCount
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7744
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7745
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7746
partsIfSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7747
    "treat the receiver as a message selector, return a collection of parts.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7748
     Notice: this is more tolerant than Smalltalk's syntax would suggest;
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7749
     especially it allows for empty keyword parts between colons.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7750
     This is not (and should not be checked here), to allow parsing of
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7751
     degenerate selectors as appearing with objectiveC."
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7752
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7753
    |idx1 "{ Class: SmallInteger }"
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7754
     coll idx2 sz|
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7755
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7756
    coll := OrderedCollection new.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7757
    idx1 := 1.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7758
    sz := self size.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7759
    [
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7760
        idx2 := self indexOf:$: startingAt:idx1.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7761
        (idx2 == 0 or:[idx2 == sz]) ifTrue:[
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7762
            coll add:(self copyFrom:idx1).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7763
            ^ coll
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7764
        ].
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7765
        coll add:(self copyFrom:idx1 to:idx2).
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7766
        idx1 := idx2 + 1
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7767
    ] loop.
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7768
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7769
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7770
     'foo:' partsIfSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7771
     'foo:bar:' partsIfSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7772
     'foo::::' partsIfSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7773
     #foo:bar: partsIfSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7774
     'hello' partsIfSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7775
     '+' partsIfSelector
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7776
    "
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7777
!
8f66659ef900 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 23663
diff changeset
  7778
21283
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7779
speciesForSubcollection
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7780
    "answer the class, when splitting instances into subcollections"
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7781
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7782
    ^ StringCollection
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7783
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7784
    "Created: / 24-01-2017 / 18:54:18 / stefan"
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7785
!
91977c9e46d5 #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21255
diff changeset
  7786
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7787
stringSpecies
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7788
    "return the underlying strings bitsPerCharacter
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7789
     (i.e. is it a regular String or a TwoByteString)"
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7790
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7791
    |string|
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7792
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  7793
    string := self string.
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  7794
    string == self ifTrue:[^ self species].
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7795
    ^ string stringSpecies
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7796
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7797
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7798
     'hello' stringSpecies
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7799
     'hello' asText allBold stringSpecies
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7800
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7801
!
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  7802
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  7803
widthFrom:startIndex to:endIndex on:aGC
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  7804
    "return ths size of part of the receiver in device units if displayed on aGC"
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  7805
20221
6e910b6733bb #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20194
diff changeset
  7806
    ^ aGC deviceFont widthOf:self from:startIndex to:endIndex
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  7807
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  7808
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7809
     'hello world' widthFrom:1 to:5 on:(View new)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7810
     'hello' widthOn:(View new)
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  7811
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7812
!
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  7813
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7814
widthOn:aGC
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  7815
    "return ths size of the receiver in device units if displayed on aGC"
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7816
20221
6e910b6733bb #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20194
diff changeset
  7817
    ^ aGC deviceFont widthOf:self     "font is already a device font"
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7818
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7819
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7820
     'hello world' widthOn:(View new)
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7821
    "
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7822
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  7823
    "Created: 12.5.1996 / 20:09:29 / cg"
2554
309ee6707322 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  7824
    "Modified: 17.4.1997 / 12:50:23 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7825
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7826
25204
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  7827
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7828
!CharacterArray methodsFor:'special string converting'!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7829
16759
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7830
asUnixFilenameString
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7831
    "return a new string consisting of receiver's characters
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7832
     with all \-characters replaced by /-characters.
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7833
     If there are no backslashes, return the original"
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7834
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7835
    ^ self copyReplaceAll:$\ with:$/ ifNone:self
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7836
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7837
    "
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7838
     'hello\world' asUnixFilenameString
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7839
    "
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7840
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7841
    "Modified: / 18.7.1998 / 22:53:02 / cg"
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7842
!
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7843
24411
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7844
expandNumericPlaceholdersWith:argArrayOrDictionary
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7845
    "return a copy of the receiver, where all %i escapes with numeric keys are
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7846
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7847
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7848
     in the new string 'hello world; how is this'.
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7849
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7850
     This will ignore all non-numeric keys (and leave them as is)."
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7851
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7852
    |stream|
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7853
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7854
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7855
    "/ self expandPlaceholdersWith:argArrayOrDictionary on:stream.
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7856
    self 
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7857
        expandPlaceholders:$% with:argArrayOrDictionary 
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7858
        ignoreNumericEscapes:false 
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7859
        ignoreNonNumericEscapes:true
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7860
        ignoreSpecialEscapes:true
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7861
        requireParentheses:true
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7862
        ifKeyAbsent:nil
24411
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7863
        on:stream.
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7864
    ^ stream contents.
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7865
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7866
    "
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7867
     'hello %1' expandNumericPlaceholdersWith:#('world')          
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7868
     'hello %(1)' expandNumericPlaceholdersWith:#('world')          
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7869
     'hello %(10)' expandNumericPlaceholdersWith:#('world')          
24411
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7870
     'hello %1 %abc' expandNumericPlaceholdersWith:#('world')          
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7871
     'hello %1 %(abc)' expandNumericPlaceholdersWith:#('world')          
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7872
    "
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7873
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7874
    "
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7875
     'hello %1' expandPlaceholdersWith:#('world')          
24774
7c7a48047b0b #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24769
diff changeset
  7876
     'hello %1 %abc' expandNumericPlaceholdersWith:#('world' 'nononono')          
7c7a48047b0b #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24769
diff changeset
  7877
     'hello %1 %abc' expandPlaceholdersWith:#('world' 'nononono')          
7c7a48047b0b #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24769
diff changeset
  7878
     'hello %1 %(abc)' expandNumericPlaceholdersWith:#('world' 'nononono')          
7c7a48047b0b #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24769
diff changeset
  7879
     'hello %1 %(abc)' expandPlaceholdersWith:#('world' 'nononono')          
24411
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7880
    "
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7881
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7882
    "Modified: / 01-07-1997 / 00:53:24 / cg"
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7883
    "Modified: / 14-07-2018 / 09:23:31 / Claus Gittinger"
24774
7c7a48047b0b #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24769
diff changeset
  7884
    "Modified (comment): / 09-09-2019 / 13:58:20 / Stefan Vogel"
24411
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7885
!
96a7c2830fad #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24410
diff changeset
  7886
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7887
expandPlaceholders
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7888
    "return a copy of the receiver, where %<special> escapes are expanded.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7889
     %<..>
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7890
        Insert a character constant or character sequence, being one of:
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7891
            cr nl tab return lf crlf ff null backspace bell esc newPage space
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7892
        i.e. you can use %<cr> to insert a CR, and %<tab> to insert a TAB.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7893
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7894
     See also bindWith:... for VisualAge compatibility."
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7895
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7896
    ^ self expandPlaceholdersWith:nil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7897
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7898
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7899
     'hello a%<crlf>b' expandPlaceholders
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7900
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7901
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7902
    "Modified: / 01-07-1997 / 00:53:24 / cg"
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7903
    "Modified: / 14-07-2018 / 09:23:31 / Claus Gittinger"
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7904
!
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7905
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7906
expandPlaceholders:escapeCharacter with:argArrayOrDictionary
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7907
    "this is a more general version of the old %-escaping method, allowing for an arbitrary
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7908
     escape character to be used (typically $$ or $% are effectively used).
24407
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7909
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7910
     Returns a copy of the receiver, where all %i escapes are
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7911
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7912
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7913
     in the new string 'hello world; how is this'.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7914
     As an extension, the argument may also be a dictionary, providing
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7915
     values for symbolic keys.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7916
     In this case, %a .. %z and %(...) are also allowed.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7917
     (%1..%9 require a numeric key in the dictionary, however)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7918
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  7919
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7920
     See also bindWith:... for VisualAge compatibility."
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7921
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7922
    |stream|
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7923
18269
77a84c6693c8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18194
diff changeset
  7924
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7925
    self expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7926
         ignoreNumericEscapes:false 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7927
         ignoreNonNumericEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7928
         ignoreSpecialEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7929
         requireParentheses:true 
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  7930
         ifKeyAbsent:nil
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7931
         on:stream.
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7932
    ^ stream contents.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7933
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7934
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7935
     'hello %1' expandPlaceholdersWith:#('world')
24843
00ba3738f39f #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24831
diff changeset
  7936
     'hello %1' expandPlaceholders:$% with:#('world')  
00ba3738f39f #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24831
diff changeset
  7937
     'hello %1' expandPlaceholders:$$ with:#('world')  
00ba3738f39f #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24831
diff changeset
  7938
     'hello $1' expandPlaceholders:$$ with:#('world')  
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7939
     'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this')
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7940
     'hello %2; how is %1' expandPlaceholdersWith:#('world' 'this')
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7941
     '%1 plus %2 gives %3 ' expandPlaceholdersWith:#(4 5 9)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7942
     '%%(1)0 gives %(1)0' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7943
     '%%10 gives %10' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7944
     '%%(10) gives %(10)' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7945
     '%test gives %1' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7946
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' allBold }
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7947
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' }
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7948
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7949
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7950
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7951
     |dict|
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7952
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7953
     dict := Dictionary new.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7954
     dict at:1 put:'one'.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7955
     dict at:$a put:'AAAAA'.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7956
     dict at:$b put:[ Time now ].
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7957
     dict at:'foo' put:[ Date today ].
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7958
     'hello $1 %a $b %(foo) $foo ' expandPlaceholders:$$ with:dict.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7959
     'hello $1 %a $b %(foo) $foo ' expandPlaceholders:$% with:dict.
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7960
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  7961
23067
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  7962
    "Modified: / 01-07-1997 / 00:53:24 / cg"
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  7963
    "Modified: / 14-06-2018 / 11:46:18 / Claus Gittinger"
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  7964
!
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  7965
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7966
expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7967
    ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7968
    ignoreNonNumericEscapes:ignoreNonNumericEscapes
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7969
    ignoreSpecialEscapes:ignoreSpecialEscapes
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  7970
    requireParentheses:requireParentheses
24407
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7971
    "this is the generic version of the old %-escaping method, allowing for an arbitrary
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7972
     escape character to be used (typically $$ or $% are effectively used).
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7973
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7974
     Return a copy of the receiver, where all %i escapes are
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7975
     replaced by corresponding arguments' printStrings from the argArray.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7976
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7977
     in the new string 'hello world; how is this'.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7978
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7979
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7980
     In this case, %a .. %z and %(...) are also allowed.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7981
     (%1..%9 require a numeric key in the dictionary, however)
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7982
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7983
     Also, values in argArrayOrDictionary may be blocks.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7984
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7985
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  7986
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
24407
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7987
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7988
     See also bindWith:... for VisualAge compatibility.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7989
     Use %<cr> to insert a CR and %<tab> to insert a TAB.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7990
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7991
     ignoreNumericEscapes controls if %<nr> escapes are expanded or not.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7992
     This is required for Windows batch-script expansion, where %<nr> should be left unchanged.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7993
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7994
     requireParentheses controls if $abc is allowed or not.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7995
     If true, multi-character replacements need to be parenthized as $(abc);
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7996
     if false, you can also write $abc.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7997
    "
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7998
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  7999
    |stream|
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8000
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8001
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8002
    self 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8003
        expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8004
        ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8005
        ignoreNonNumericEscapes:ignoreNonNumericEscapes
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8006
        ignoreSpecialEscapes:ignoreSpecialEscapes
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8007
        requireParentheses:requireParentheses 
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8008
        ifKeyAbsent:nil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8009
        on:stream.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8010
    ^ stream contents
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8011
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8012
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8013
     'hello %1' expandPlaceholders:$% with:#('world') on:Transcript.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8014
     'hello %a%<cr>' expandPlaceholders:$% 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8015
                    with:(Dictionary new at:'a' put:'world';yourself) 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8016
                    on:Transcript.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8017
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'a' put:'world';yourself) on:Transcript.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8018
     'hello %(aa)%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) on:Transcript.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8019
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) ignoreNumericEscapes:true requireParentheses:false on:Transcript.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8020
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8021
     String streamContents:[:s|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8022
        'hello %1' expandPlaceholders:$% with:#('world') on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8023
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8024
        'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8025
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8026
        'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8027
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8028
        '%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8029
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8030
        '%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8031
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8032
        '%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8033
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8034
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8035
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8036
        '%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8037
        s cr.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8038
        '|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8039
     ]
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8040
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8041
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8042
    "without xlation dictionary:
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8043
        'hello %1' expandPlaceholdersWith:nil.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8044
        'hello%<cr> %1' expandPlaceholdersWith:nil.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8045
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8046
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8047
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8048
     |dict|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8049
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8050
     dict := Dictionary new.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8051
     dict at:1 put:'one'.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8052
     dict at:$a put:'AAAAA'.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8053
     dict at:$b put:[ Time now ].
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8054
     String streamContents:[:s|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8055
         'hello $1 $a $b' expandPlaceholders:$$ with:dict on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8056
     ].
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8057
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8058
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8059
    "using blocks:
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8060
     |dict|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8061
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8062
     dict := Dictionary new.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8063
     dict at:'time' put:[Time now printString].
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8064
     dict at:'date' put:[Date today printString].
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8065
     String streamContents:[:s|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8066
         'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8067
     ].
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8068
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8069
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8070
    "Created: / 14-01-2019 / 17:43:03 / Claus Gittinger"
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8071
    "Modified: / 05-06-2019 / 17:05:47 / Claus Gittinger"
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8072
!
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8073
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8074
expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8075
    ignoreNumericEscapes:ignoreNumericEscapes 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8076
    ignoreNonNumericEscapes:ignoreNonNumericEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8077
    ignoreSpecialEscapes:ignoreSpecialEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8078
    requireParentheses:requireParentheses
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8079
    ifKeyAbsent:ifKeyAbsentBlockOrNil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8080
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8081
    "this is the generic version of the old %-escaping method, allowing for an arbitrary
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8082
     escape character to be used (typically $$ or $% are effectively used).
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8083
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8084
     Return a copy of the receiver, where all %i escapes are
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8085
     replaced by corresponding arguments' printStrings from the argArray.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8086
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8087
     in the new string 'hello world; how is this'.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8088
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8089
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8090
     In this case, %a .. %z and %(...) are also allowed.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8091
     (%1..%9 require a numeric key in the dictionary, however)
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8092
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8093
     Also, values in argArrayOrDictionary may be blocks.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8094
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8095
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  8096
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8097
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8098
     See also bindWith:... for VisualAge compatibility.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8099
     Use %<cr> to insert a CR and %<tab> to insert a TAB.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8100
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8101
     ignoreNumericEscapes controls if %<nr> escapes are expanded or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8102
     This is required for Windows batch-script expansion, where %<nr> should be left unchanged.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8103
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8104
     requireParentheses controls if $abc is allowed or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8105
     If true, multi-character replacements need to be parenthized as $(abc);
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8106
     if false, you can also write $abc.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8107
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8108
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8109
    |stream|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8110
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8111
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8112
    self 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8113
        expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8114
        ignoreNumericEscapes:ignoreNumericEscapes 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8115
        ignoreNonNumericEscapes:ignoreNonNumericEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8116
        ignoreSpecialEscapes:ignoreSpecialEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8117
        requireParentheses:requireParentheses 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8118
        ifKeyAbsent:ifKeyAbsentBlockOrNil
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8119
        on:stream.
24407
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8120
    ^ stream contents
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8121
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8122
    "
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8123
     'hello %1' expandPlaceholders:$% with:#('world') on:Transcript.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8124
     'hello %a%<cr>' expandPlaceholders:$% 
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8125
                    with:(Dictionary new at:'a' put:'world';yourself) 
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8126
                    on:Transcript.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8127
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'a' put:'world';yourself) on:Transcript.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8128
     'hello %(aa)%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) on:Transcript.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8129
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) ignoreNumericEscapes:true requireParentheses:false on:Transcript.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8130
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8131
     String streamContents:[:s|
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8132
        'hello %1' expandPlaceholders:$% with:#('world') on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8133
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8134
        'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8135
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8136
        'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8137
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8138
        '%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8139
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8140
        '%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8141
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8142
        '%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8143
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8144
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8145
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8146
        '%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8147
        s cr.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8148
        '|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8149
     ]
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8150
    "
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8151
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8152
    "without xlation dictionary:
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8153
        'hello %1' expandPlaceholdersWith:nil.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8154
        'hello%<cr> %1' expandPlaceholdersWith:nil.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8155
    "
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8156
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8157
    "
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8158
     |dict|
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8159
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8160
     dict := Dictionary new.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8161
     dict at:1 put:'one'.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8162
     dict at:$a put:'AAAAA'.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8163
     dict at:$b put:[ Time now ].
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8164
     String streamContents:[:s|
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8165
         'hello $1 $a $b' expandPlaceholders:$$ with:dict on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8166
     ].
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8167
    "
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8168
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8169
    "using blocks:
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8170
     |dict|
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8171
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8172
     dict := Dictionary new.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8173
     dict at:'time' put:[Time now printString].
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8174
     dict at:'date' put:[Date today printString].
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8175
     String streamContents:[:s|
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8176
         'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8177
     ].
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8178
    "
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8179
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8180
    "Created: / 14-01-2019 / 17:43:03 / Claus Gittinger"
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8181
    "Modified: / 05-06-2019 / 17:05:47 / Claus Gittinger"
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8182
!
37ddfbbe6d37 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 24300
diff changeset
  8183
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8184
expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8185
    ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8186
    ignoreNonNumericEscapes:ignoreNonNumericEscapes
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8187
    ignoreSpecialEscapes:ignoreSpecialEscapes
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8188
    requireParentheses:requireParentheses
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8189
    ifKeyAbsent:replaceActionOrNil
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8190
    on:aStream
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8191
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8192
    "this is the central method for %-escaping, allowing for an arbitrary
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8193
     escape character to be used (typically $$ or $% are effectively used).
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8194
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8195
     Write the receiver to aStream, where all %i escapes are
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8196
     replaced by corresponding arguments' printStrings from the argArray.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8197
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8198
     in the new string 'hello world; how is this'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8199
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8200
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8201
     In this case, %a .. %z and %(...) are also allowed.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8202
     (%1..%9 require a numeric key in the dictionary, however)
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8203
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8204
     Also, values in argArrayOrDictionary may be blocks.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8205
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8206
     To get a '%' character, use a '%%'-escape.
24555
8988ae79b2df #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24550
diff changeset
  8207
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8208
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8209
     See also bindWith:... for VisualAge compatibility.
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8210
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8211
     - %<..>
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8212
        Insert a character constant or character sequence, being one of:
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8213
            cr nl tab return lf crlf ff null backspace bell esc newPage space
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8214
        i.e. you can use %<cr> to insert a CR, and %<tab> to insert a TAB.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8215
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8216
     - ignoreNumericEscapes 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8217
        controls if %<nr> escapes are expanded or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8218
        This is required for Windows batch-script expansion, where %<nr> should be left unchanged.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8219
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8220
     - ignoreSpecialEscapes 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8221
        controls if control characters like %<cr> are expanded or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8222
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8223
     - requireParentheses 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8224
        controls if $abc is allowed or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8225
        If true, multi-character replacements need to be parenthized as $(abc),
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8226
                and the above is interpreted as $(a)bc
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8227
        If false, you can also write $abc.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8228
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8229
     - keepIfNoSuchKey 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8230
        controls what should happen if a variable/index is encountered which is not found in argArrayOrDictionary. 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8231
        It can be nil or a two arg block.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8232
        If nil, the sequence is replaced by an empty string (i.e. 'abc$(foo)def' -> 'abcdef')
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8233
        if aBlock, it will be called with both the full escape sequence and the cariable only as arguments,
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8234
        and the expansion will be what the block returns. 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8235
        i.e. if the block is [:meta :name | meta], then the above will result in 'abc$(foo)def'
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8236
        and if the block is [:meta :name | name], then the above will result in 'abcfoodef'
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8237
        Usefull if you want to expand a string twice, without loosing the key-sequences in the first place.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8238
        Notice: for supid backward compatibility, keepIfNoSuchKey is not applied for %X sequences, where X is a single letter.
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8239
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8240
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8241
    |next v key numericKey
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8242
     idx   "{ SmallInteger }"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8243
     idx2  "{ SmallInteger }"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8244
     start "{ SmallInteger }"
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8245
     stop  "{ SmallInteger }"
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8246
     noReplacementAction|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8247
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8248
    replaceActionOrNil isNil ifTrue:[
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8249
        noReplacementAction := [:seq :var | '']
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8250
    ] ifFalse:[
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8251
        noReplacementAction := replaceActionOrNil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8252
    ].
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8253
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8254
    stop := self size.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8255
    start := 1.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8256
    [start <= stop] whileTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8257
        idx := self indexOf:escapeCharacter startingAt:start.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8258
        (idx == 0 or:[idx == stop]) ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8259
            aStream nextPutAll:self startingAt:start to:stop.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8260
            ^ self.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8261
        ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8262
        "found an escapeCharacter at idx"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8263
        idx > start ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8264
            aStream nextPutAll:self startingAt:start to:(idx - 1).
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8265
        ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8266
        next := self at:(idx + 1).
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8267
        (next == escapeCharacter) ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8268
            "doubled escapeCharacter"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8269
            aStream nextPut:escapeCharacter.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8270
        ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8271
            "%<...> "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8272
            next == $< ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8273
                ignoreSpecialEscapes ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8274
                    aStream nextPut:escapeCharacter.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8275
                    aStream nextPut:next.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8276
                ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8277
                    idx2 := self indexOf:$> startingAt:idx+2.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8278
                    key := self copyFrom:idx+2 to:idx2-1.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8279
                    idx := idx2 - 1.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8280
                    key := key asSymbolIfInterned.
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8281
                    (#(cr tab nl return lf ff null backspace bell esc newPage space) includesIdentical:key) ifTrue:[
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8282
                        aStream nextPut:(Character perform:key).
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8283
                    ] ifFalse:[
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8284
                        (key == #crlf) ifTrue:[
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8285
                            aStream nextPutAll:(String crlf).
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8286
                        ] ifFalse:[
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8287
                            aStream nextPutAll:key.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8288
                        ]
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8289
                    ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8290
                ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8291
            ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8292
                argArrayOrDictionary isNil ifTrue:[
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8293
                    "/ %x but no dictionary provided (strange error case, actually)
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8294
                    aStream nextPut:next.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8295
                ] ifFalse:[    
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8296
                    (next isDigit and:[ignoreNumericEscapes not]) ifTrue:[
24555
8988ae79b2df #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24550
diff changeset
  8297
                        "/ %N (N is digit)
24556
64ce3973da3d #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24555
diff changeset
  8298
                        key := next asString.
64ce3973da3d #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24555
diff changeset
  8299
                        numericKey := next digitValue.
24558
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8300
                        (((idx + 2) <= self size) and:[(next := self at:idx+2) isDigit]) ifTrue:[
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8301
                            key := key,next.
24556
64ce3973da3d #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24555
diff changeset
  8302
                            idx := idx + 1.
24558
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8303
                            [((idx + 2) <= self size) and:[(next := self at:idx+2) isDigit]] whileTrue:[
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8304
                                key := key,next.
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8305
                                idx := idx + 1.
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8306
                            ].
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8307
                            numericKey := Integer readFrom:key.
24555
8988ae79b2df #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24550
diff changeset
  8308
                        ].
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8309
                        v := argArrayOrDictionary 
24555
8988ae79b2df #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24550
diff changeset
  8310
                                at:numericKey 
24558
de28b94b9466 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24557
diff changeset
  8311
                                ifAbsent:[ noReplacementAction value:escapeCharacter,key value:key ].
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8312
                    ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8313
                        next == $( ifTrue:[
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8314
                            "/ %(name) 
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8315
                            idx2 := self indexOf:$) startingAt:idx+2.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8316
                            self assert:(idx2 > 0) message:'closing parenthesis missing'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8317
                            key := self copyFrom:idx+2 to:idx2-1.
24557
e56012300447 #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24556
diff changeset
  8318
                            idx := idx2-1.
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8319
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8320
                            (key isNumeric 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8321
                              and:[(numericKey := Integer readFrom:key onError:nil) notNil])
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8322
                            ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8323
                                ignoreNumericEscapes ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8324
                                    v := escapeCharacter,'(',key,')'
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8325
                                ] ifFalse:[
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8326
                                    v := argArrayOrDictionary 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8327
                                            at:numericKey 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8328
                                            ifAbsent:[ noReplacementAction value:escapeCharacter,'(',key,')' value:key ]
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8329
                                ]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8330
                            ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8331
                                ignoreNonNumericEscapes ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8332
                                    v := escapeCharacter,'(',key,')'
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8333
                                ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8334
                                    argArrayOrDictionary isBlock ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8335
                                        v := argArrayOrDictionary value:key
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8336
                                    ] ifFalse:[    
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8337
                                        (argArrayOrDictionary includesKey:key) ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8338
                                            v := argArrayOrDictionary at:key
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8339
                                        ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8340
                                            key := key asSymbolIfInternedOrSelf.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8341
                                            (argArrayOrDictionary includesKey:key) ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8342
                                                v := argArrayOrDictionary at:key
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8343
                                            ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8344
                                                (key size == 1 and:[ argArrayOrDictionary includesKey:(key at:1)]) ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8345
                                                    v := argArrayOrDictionary at:(key at:1)
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8346
                                                ] ifFalse:[
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8347
                                                    v := noReplacementAction value:escapeCharacter,'(',key,')' value:key
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8348
                                                ]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8349
                                            ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8350
                                        ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8351
                                    ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8352
                                ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8353
                            ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8354
                        ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8355
                            (ignoreNonNumericEscapes not 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8356
                              and:[ next isLetter 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8357
                              and:[ argArrayOrDictionary isSequenceable not "is a Dictionary"]]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8358
                            ) ifTrue:[
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8359
                                "%X (X is letter)"
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8360
                                requireParentheses ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8361
                                    key := next.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8362
                                ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8363
                                    idx2 := self findFirst:[:ch | (ch isLetterOrDigitOrUnderline) not] startingAt:idx+2.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8364
                                    idx2 == 0 ifTrue:[idx2 := self size + 1].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8365
                                    key := self copyFrom:idx+1 to:idx2-1.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8366
                                    idx := idx2 - 2.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8367
                                ].
24556
64ce3973da3d #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24555
diff changeset
  8368
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8369
                                argArrayOrDictionary isBlock ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8370
                                    v := argArrayOrDictionary value:key
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8371
                                ] ifFalse:[        
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8372
                                    v := argArrayOrDictionary
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8373
                                            at:key
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8374
                                            ifAbsent:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8375
                                                "try symbol or string instead of character"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8376
                                                argArrayOrDictionary
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8377
                                                    at:key asString asSymbolIfInternedOrSelf
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8378
                                                    ifAbsent:[
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8379
                                                        escapeCharacter asString , key
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8380
                                                    ].
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8381
                                         ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8382
                                ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8383
                            ] ifFalse:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8384
                                v := String with:escapeCharacter with:next.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8385
                            ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8386
                        ]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8387
                    ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8388
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8389
                    v isBlock ifTrue:[
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8390
                        v := v value
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8391
                    ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8392
                    v printOn:aStream.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8393
                ]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8394
            ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8395
        ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8396
        start := idx + 2
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8397
    ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8398
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8399
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8400
     'hello %1' expandPlaceholders:$% with:#('world') on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8401
     'hello %a%<cr>' expandPlaceholders:$% 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8402
                    with:(Dictionary new at:'a' put:'world';yourself) 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8403
                    on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8404
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'a' put:'world';yourself) on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8405
     'hello %(aa)%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8406
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) ignoreNumericEscapes:true requireParentheses:false on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8407
24556
64ce3973da3d #BUGFIX by exept
Claus Gittinger <cg@exept.de>
parents: 24555
diff changeset
  8408
     'hello %10%9%8' expandPlaceholders:$% with:{ 'x1' . 'x2' . 'x3' . 'x4' . 'x5' . 'x6' . 'x7' . 'x8' . 'x9' . 'x10' }
24555
8988ae79b2df #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24550
diff changeset
  8409
     'hello %10' expandPlaceholders:$% with:{ 'x1' . 'x2' . 'x3' . 'x4' . 'x5' . 'x6' . 'x7' . 'x8' . 'x9' . 'x10' }
8988ae79b2df #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24550
diff changeset
  8410
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8411
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8412
        'hello %1' expandPlaceholders:$% with:#('world') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8413
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8414
        'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8415
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8416
        'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8417
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8418
        '%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8419
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8420
        '%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8421
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8422
        '%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8423
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8424
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8425
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8426
        '%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8427
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8428
        '|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8429
     ]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8430
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8431
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8432
    "without xlation dictionary:
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8433
        'hello %1' expandPlaceholdersWith:nil.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8434
        'hello%<cr> %1' expandPlaceholdersWith:nil.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8435
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8436
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8437
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8438
     |dict|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8439
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8440
     dict := Dictionary new.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8441
     dict at:1 put:'one'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8442
     dict at:$a put:'AAAAA'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8443
     dict at:$b put:[ Time now ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8444
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8445
         'hello $1 $a $b' expandPlaceholders:$$ with:dict on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8446
     ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8447
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8448
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8449
    "using blocks:
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8450
     |dict|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8451
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8452
     dict := Dictionary new.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8453
     dict at:'time' put:[Time now printString].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8454
     dict at:'date' put:[Date today printString].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8455
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8456
         'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8457
     ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8458
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8459
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8460
    "Created: / 14-01-2019 / 17:43:03 / Claus Gittinger"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8461
    "Modified: / 05-06-2019 / 17:05:47 / Claus Gittinger"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8462
!
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8463
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8464
expandPlaceholders:escapeCharacter 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8465
    with:argArrayOrDictionary 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8466
    ignoreNumericEscapes:ignoreNumericEscapes 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8467
    ignoreNonNumericEscapes:ignoreNonNumericEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8468
    ignoreSpecialEscapes:ignoreSpecialEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8469
    requireParentheses:requireParentheses 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8470
    on:aStream
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8471
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8472
    "this is the central method for %-escaping, allowing for an arbitrary
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8473
     escape character to be used (typically $$ or $% are effectively used).
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8474
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8475
     Write the receiver to aStream, where all %i escapes are
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8476
     replaced by corresponding arguments' printStrings from the argArray.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8477
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8478
     in the new string 'hello world; how is this'.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8479
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8480
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8481
     In this case, %a .. %z and %(...) are also allowed.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8482
     (%1..%9 require a numeric key in the dictionary, however)
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8483
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8484
     Also, values in argArrayOrDictionary may be blocks.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8485
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8486
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  8487
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8488
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8489
     See also bindWith:... for VisualAge compatibility.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8490
     Use %<cr> to insert a CR and %<tab> to insert a TAB.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8491
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8492
     ignoreNumericEscapes controls if %<nr> escapes are expanded or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8493
     This is required for Windows batch-script expansion, where %<nr> should be left unchanged.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8494
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8495
     ignoreSpecialEscapes controls if control characters like %<cr> are expanded or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8496
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8497
     requireParentheses controls if $abc is allowed or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8498
     If true, multi-character replacements need to be parenthized as $(abc) and the above is
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8499
     interpreted as $(a)bc;
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8500
     if false, you can also write $abc.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8501
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8502
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8503
    ^ self
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8504
        expandPlaceholders:escapeCharacter 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8505
        with:argArrayOrDictionary 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8506
        ignoreNumericEscapes:ignoreNumericEscapes 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8507
        ignoreNonNumericEscapes:ignoreNonNumericEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8508
        ignoreSpecialEscapes:ignoreSpecialEscapes
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8509
        requireParentheses:requireParentheses 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8510
        ifKeyAbsent:nil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8511
        on:aStream
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8512
!
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8513
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8514
expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8515
    ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8516
    on:aStream
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8517
    "this is the generic version of the old %-escaping method, allowing for an arbitrary
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8518
     escape character to be used (typically $$ or $% are effectively used).
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8519
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8520
     Write the receiver to aStream, where all %i escapes are
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8521
     replaced by corresponding arguments' printStrings from the argArray.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8522
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8523
     in the new string 'hello world; how is this'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8524
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8525
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8526
     In this case, %a .. %z and %(...) are also allowed.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8527
     (%1..%9 require a numeric key in the dictionary, however)
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8528
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8529
     Also, values in argArrayOrDictionary may be blocks.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8530
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8531
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  8532
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8533
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8534
     See also bindWith:... for VisualAge compatibility.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8535
     Use %<cr> to insert a CR and %<tab> to insert a TAB.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8536
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8537
     ignoreNumericEscapes controls if %<nr> escapes are expanded or not.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8538
     This is required for Windows batch-script expansion, where %<nr> should be left
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8539
     unchanged."
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8540
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8541
    ^ self
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8542
        expandPlaceholders:escapeCharacter 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8543
        with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8544
        ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8545
        ignoreNonNumericEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8546
        ignoreSpecialEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8547
        requireParentheses:true
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8548
        ifKeyAbsent:nil
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8549
        on:aStream
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8550
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8551
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8552
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8553
        'hello %1' expandPlaceholders:$% with:#('world') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8554
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8555
        'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8556
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8557
        'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8558
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8559
        '%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8560
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8561
        '%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8562
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8563
        '%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8564
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8565
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8566
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8567
        '%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8568
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8569
        '|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8570
     ]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8571
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8572
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8573
    "without xlation dictionary:
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8574
        'hello %1' expandPlaceholdersWith:nil.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8575
        'hello%<cr> %1' expandPlaceholdersWith:nil.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8576
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8577
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8578
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8579
     |dict|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8580
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8581
     dict := Dictionary new.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8582
     dict at:1 put:'one'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8583
     dict at:$a put:'AAAAA'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8584
     dict at:$b put:[ Time now ].
25094
0850710a4f85 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 25080
diff changeset
  8585
     dict at:'foo' put:'FOO'.
0850710a4f85 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 25080
diff changeset
  8586
     dict at:'foo2' put:'FOO\BAR'.
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8587
     String streamContents:[:s|
25094
0850710a4f85 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 25080
diff changeset
  8588
         'hello $1 $a $b $(foo) $$(foo) $(foo2) ' expandPlaceholders:$$ with:dict on:s.
0850710a4f85 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 25080
diff changeset
  8589
     ].                                                    
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8590
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8591
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8592
    "using blocks:
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8593
     |dict|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8594
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8595
     dict := Dictionary new.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8596
     dict at:'time' put:[Time now printString].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8597
     dict at:'date' put:[Date today printString].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8598
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8599
         'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8600
     ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8601
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8602
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8603
    "Created: / 14-06-2018 / 11:44:08 / Claus Gittinger"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8604
    "Modified (comment): / 14-01-2019 / 17:44:02 / Claus Gittinger"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8605
!
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8606
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8607
expandPlaceholders:escapeCharacter 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8608
    with:argArrayOrDictionary 
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8609
    ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8610
    requireParentheses:requireParentheses
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8611
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8612
    "this is a more general version of the old %-escaping method, allowing for an arbitrary
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8613
     escape character to be used (typically $$ or $% are effectively used).
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8614
     See also bindWith:... for VisualAge compatibility.
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8615
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8616
     - ignoreNumericEscapes 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8617
        controls if %<nr> escapes are expanded or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8618
        This is required for Windows batch-script expansion, where %<nr> should be left unchanged.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8619
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8620
     - requireParentheses 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8621
        controls if $abc is allowed or not.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8622
        If true, multi-character replacements need to be parenthized as $(abc);
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8623
        if false, you can also write $abc.
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8624
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8625
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8626
    |stream|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8627
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8628
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8629
    self 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8630
        expandPlaceholders:escapeCharacter 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8631
        with:argArrayOrDictionary 
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8632
        ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8633
        ignoreNonNumericEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8634
        ignoreSpecialEscapes:false
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8635
        requireParentheses:requireParentheses 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8636
        ifKeyAbsent:nil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8637
        on:stream.
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8638
    ^ stream contents
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8639
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8640
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8641
     'hello %1' expandPlaceholders:$% with:#('world') on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8642
     'hello %a%<cr>' expandPlaceholders:$% 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8643
                    with:(Dictionary new at:'a' put:'world';yourself) 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8644
                    on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8645
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'a' put:'world';yourself) on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8646
     'hello %(aa)%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8647
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) ignoreNumericEscapes:true requireParentheses:false on:Transcript.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8648
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8649
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8650
        'hello %1' expandPlaceholders:$% with:#('world') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8651
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8652
        'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8653
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8654
        'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8655
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8656
        '%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8657
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8658
        '%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8659
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8660
        '%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8661
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8662
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8663
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8664
        '%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8665
        s cr.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8666
        '|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8667
     ]
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8668
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8669
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8670
    "without xlation dictionary:
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8671
        'hello %1' expandPlaceholdersWith:nil.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8672
        'hello%<cr> %1' expandPlaceholdersWith:nil.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8673
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8674
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8675
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8676
     |dict|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8677
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8678
     dict := Dictionary new.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8679
     dict at:1 put:'one'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8680
     dict at:$a put:'AAAAA'.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8681
     dict at:$b put:[ Time now ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8682
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8683
         'hello $1 $a $b' expandPlaceholders:$$ with:dict on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8684
     ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8685
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8686
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8687
    "using blocks:
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8688
     |dict|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8689
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8690
     dict := Dictionary new.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8691
     dict at:'time' put:[Time now printString].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8692
     dict at:'date' put:[Date today printString].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8693
     String streamContents:[:s|
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8694
         'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8695
     ].
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8696
    "
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8697
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8698
    "Created: / 14-01-2019 / 17:43:03 / Claus Gittinger"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8699
    "Modified: / 05-06-2019 / 17:05:47 / Claus Gittinger"
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8700
!
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8701
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8702
expandPlaceholders:escapeCharacter with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8703
    ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8704
    requireParentheses:requireParentheses 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8705
    on:aStream
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8706
23603
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8707
    "this is the generic version of the old %-escaping method, allowing for an arbitrary
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8708
     escape character to be used (typically $$ or $% are effectively used).
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8709
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8710
     Write the receiver to aStream, where all %i escapes are
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8711
     replaced by corresponding arguments' printStrings from the argArray.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8712
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8713
     in the new string 'hello world; how is this'.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8714
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8715
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8716
     In this case, %a .. %z and %(...) are also allowed.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8717
     (%1..%9 require a numeric key in the dictionary, however)
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8718
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8719
     Also, values in argArrayOrDictionary may be blocks.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8720
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8721
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  8722
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
23603
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8723
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8724
     See also bindWith:... for VisualAge compatibility.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8725
     Use %<cr> to insert a CR and %<tab> to insert a TAB.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8726
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8727
     ignoreNumericEscapes controls if %<nr> escapes are expanded or not.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8728
     This is required for Windows batch-script expansion, where %<nr> should be left unchanged.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8729
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8730
     requireParentheses controls if $abc is allowed or not.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8731
     If true, multi-character replacements need to be parenthized as $(abc);
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8732
     if false, you can also write $abc.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8733
    "
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8734
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8735
    self 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8736
        expandPlaceholders:escapeCharacter 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8737
        with:argArrayOrDictionary 
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8738
        ignoreNumericEscapes:ignoreNumericEscapes 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8739
        ignoreNonNumericEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8740
        ignoreSpecialEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8741
        requireParentheses:requireParentheses 
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8742
        ifKeyAbsent:nil
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8743
        on:aStream.
23603
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8744
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8745
    "
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8746
     'hello %1' expandPlaceholders:$% with:#('world') on:Transcript.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8747
     'hello %a%<cr>' expandPlaceholders:$% 
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8748
                    with:(Dictionary new at:'a' put:'world';yourself) 
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8749
                    on:Transcript.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8750
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'a' put:'world';yourself) on:Transcript.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8751
     'hello %(aa)%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) on:Transcript.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8752
     'hello %aa%<cr>' expandPlaceholders:$% with:(Dictionary new at:'aa' put:'world';yourself) ignoreNumericEscapes:true requireParentheses:false on:Transcript.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8753
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8754
     String streamContents:[:s|
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8755
        'hello %1' expandPlaceholders:$% with:#('world') on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8756
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8757
        'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8758
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8759
        'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8760
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8761
        '%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8762
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8763
        '%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8764
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8765
        '%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8766
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8767
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8768
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8769
        '%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8770
        s cr.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8771
        '|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8772
     ]
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8773
    "
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8774
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8775
    "without xlation dictionary:
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8776
        'hello %1' expandPlaceholdersWith:nil.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8777
        'hello%<cr> %1' expandPlaceholdersWith:nil.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8778
    "
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8779
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8780
    "
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8781
     |dict|
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8782
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8783
     dict := Dictionary new.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8784
     dict at:1 put:'one'.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8785
     dict at:$a put:'AAAAA'.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8786
     dict at:$b put:[ Time now ].
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8787
     String streamContents:[:s|
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8788
         'hello $1 $a $b' expandPlaceholders:$$ with:dict on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8789
     ].
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8790
    "
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8791
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8792
    "using blocks:
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8793
     |dict|
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8794
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8795
     dict := Dictionary new.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8796
     dict at:'time' put:[Time now printString].
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8797
     dict at:'date' put:[Date today printString].
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8798
     String streamContents:[:s|
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8799
         'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8800
     ].
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8801
    "
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8802
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8803
    "Created: / 14-01-2019 / 17:43:03 / Claus Gittinger"
24254
0de83c555898 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24250
diff changeset
  8804
    "Modified: / 05-06-2019 / 17:05:47 / Claus Gittinger"
23067
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8805
!
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8806
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8807
expandPlaceholders:escapeCharacter with:argArrayOrDictionary on:aStream
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8808
    "this is the generic version of the old %-escaping method, allowing for an arbitrary
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8809
     escape character to be used (typically $$ or $% are effectively used).
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8810
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8811
     Write the receiver to aStream, where all %i escapes are
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8812
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8813
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8814
     in the new string 'hello world; how is this'.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8815
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8816
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8817
     In this case, %a .. %z and %(...) are also allowed.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8818
     (%1..%9 require a numeric key in the dictionary, however)
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8819
     Also, the values in argArrayOrDictionary may be blocks.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8820
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8821
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  8822
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
23067
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8823
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8824
     See also bindWith:... for VisualAge compatibility.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8825
     Use %<cr> to insert a CR and %<tab> to insert a TAB."
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8826
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8827
    ^ self
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8828
        expandPlaceholders:escapeCharacter 
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8829
        with:argArrayOrDictionary 
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8830
        ignoreNumericEscapes:false 
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8831
        ignoreNonNumericEscapes:false 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8832
        ignoreSpecialEscapes:false 
23603
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8833
        requireParentheses:true
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8834
        ifKeyAbsent:nil
23067
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8835
        on:aStream
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8836
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8837
    "
23603
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8838
     'hello %1' expandPlaceholders:$% with:#('world') on:Transcript.
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8839
23067
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8840
     String streamContents:[:s|
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8841
        'hello %1' expandPlaceholders:$% with:#('world') on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8842
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8843
        'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8844
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8845
        'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8846
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8847
        '%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8848
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8849
        '%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8850
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8851
        '%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8852
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8853
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8854
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8855
        '%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8856
        s cr.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8857
        '|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8858
     ]
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8859
    "
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8860
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8861
    "
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8862
     |dict|
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8863
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8864
     dict := Dictionary new.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8865
     dict at:1 put:'one'.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8866
     dict at:$a put:'AAAAA'.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8867
     dict at:$b put:[ Time now ].
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8868
     String streamContents:[:s|
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8869
         'hello $1 $a $b' expandPlaceholders:$$ with:dict on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8870
     ].
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8871
    "
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8872
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8873
    "using blocks:
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8874
     |dict|
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8875
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8876
     dict := Dictionary new.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8877
     dict at:'time' put:[Time now printString].
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8878
     dict at:'date' put:[Date today printString].
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8879
     String streamContents:[:s|
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8880
         'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8881
     ].
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8882
    "
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  8883
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  8884
    "Modified: / 18-11-2010 / 15:43:28 / cg"
23603
f944a38585db #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23552
diff changeset
  8885
    "Modified (comment): / 14-01-2019 / 18:02:59 / Claus Gittinger"
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  8886
!
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  8887
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8888
expandPlaceholdersWith:argArrayOrDictionary
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8889
    "return a copy of the receiver, where all %i escapes are
4410
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8890
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8891
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8892
     in the new string 'hello world; how is this'.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  8893
4410
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8894
     As an extension, the argument may also be a dictionary, providing
7313
9be9b35f5370 comment
Claus Gittinger <cg@exept.de>
parents: 7312
diff changeset
  8895
     values for symbolic keys.
4842
0086acd80497 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  8896
     In this case, %a .. %z and %(...) are also allowed.
4410
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8897
     (%1..%9 require a numeric key in the dictionary, however)
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  8898
     Also, the values in argArrayOrDictionary may be blocks.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  8899
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8900
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  8901
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8902
     See also bindWith:... for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8903
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8904
    |stream|
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8905
18269
77a84c6693c8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18194
diff changeset
  8906
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
23209
fe7673542e5f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23188
diff changeset
  8907
    "/ self expandPlaceholdersWith:argArrayOrDictionary on:stream.
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8908
    self 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8909
        expandPlaceholders:$% with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8910
        ignoreNumericEscapes:false 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8911
        ignoreNonNumericEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8912
        ignoreSpecialEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8913
        requireParentheses:true
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8914
        ifKeyAbsent:nil
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  8915
        on:stream.
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8916
    ^ stream contents.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8917
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8918
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8919
     'hello %1' expandPlaceholdersWith:#('world')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8920
     'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8921
     'hello %2; how is %1' expandPlaceholdersWith:#('world' 'this')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8922
     '%1 plus %2 gives %3 ' expandPlaceholdersWith:#(4 5 9)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8923
     '%%(1)0 gives %(1)0' expandPlaceholdersWith:#(123)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8924
     '%%10 gives %10' expandPlaceholdersWith:#(123)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8925
     '%%(10) gives %(10)' expandPlaceholdersWith:#(123)
8938
860bbcbd3bd8 Fix #expandPlaceHoldersWith:, when a %a is encountered and and an Array
Stefan Vogel <sv@exept.de>
parents: 8913
diff changeset
  8926
     '%test gives %1' expandPlaceholdersWith:#(123)
11028
cb1ee3ddd91a expandPlaceHolders: care fr Text with emphasis
Claus Gittinger <cg@exept.de>
parents: 11018
diff changeset
  8927
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' allBold }
cb1ee3ddd91a expandPlaceHolders: care fr Text with emphasis
Claus Gittinger <cg@exept.de>
parents: 11018
diff changeset
  8928
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' }
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  8929
     ('bla %1 bla' withColor:Color red)
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  8930
        expandPlaceholdersWith:{ 'hello' }
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  8931
     ('bla %1 bla' withColor:Color red)
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  8932
        expandPlaceholdersWith:{ 'hello' withColor:Color blue }
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8933
    "
1026
455c9f609f4d care for 16bit strings in expandPlaceHolders
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  8934
4410
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8935
    "
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8936
     |dict|
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8937
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8938
     dict := Dictionary new.
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8939
     dict at:1 put:'one'.
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8940
     dict at:$a put:'AAAAA'.
8794
a5df33935142 nindWith supports blocks in the value dictionary
Claus Gittinger <cg@exept.de>
parents: 8710
diff changeset
  8941
     dict at:$b put:[ Time now ].
12316
3e78905d70a9 comment/format in: #expandPlaceholdersWith:
Claus Gittinger <cg@exept.de>
parents: 12196
diff changeset
  8942
     dict at:'foo' put:[ Date today ].
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  8943
     'hello %1 %a %b %(foo)' expandPlaceholdersWith:dict
4410
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8944
    "
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  8945
23209
fe7673542e5f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23188
diff changeset
  8946
    "Modified: / 01-07-1997 / 00:53:24 / cg"
fe7673542e5f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23188
diff changeset
  8947
    "Modified: / 14-07-2018 / 09:23:31 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8948
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8949
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8950
expandPlaceholdersWith:argArrayOrDictionary ifKeyAbsent:ifNoSuchKeyActionOrNil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8951
    "return a copy of the receiver, where all %i escapes are
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8952
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8953
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8954
     in the new string 'hello world; how is this'.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8955
     The argument may also be a dictionary, providing values for symbolic keys.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8956
     To get a '%' character, use a '%%'-escape.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8957
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8958
     See the comment in
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8959
        expandPlaceholders:with:ignoreNumericEscapes:ignoreNonNumericEscapes:ignoreSpecialEscapes:requireParentheses:ifKeyAbsent:on:
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8960
     for a full explanation.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8961
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8962
     See also bindWith:... for VisualAge compatibility."
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8963
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8964
    |stream|
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8965
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8966
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8967
    self 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8968
        expandPlaceholders:$% with:argArrayOrDictionary 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8969
        ignoreNumericEscapes:false 
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8970
        ignoreNonNumericEscapes:false
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8971
        ignoreSpecialEscapes:false
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8972
        requireParentheses:true
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8973
        ifKeyAbsent:ifNoSuchKeyActionOrNil
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8974
        on:stream.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8975
    ^ stream contents.
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8976
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8977
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8978
     'hello %(abc) %1 %a %; %%' expandPlaceholdersWith:nil ifNoSuchKey:[:str :nm | str]
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8979
    "
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8980
!
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  8981
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8982
expandPlaceholdersWith:argArrayOrDictionary on:aStream
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8983
    "write the receiver to aStream, where all %i escapes are
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8984
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8985
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8986
     in the new string 'hello world; how is this'.
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  8987
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8988
     As an extension, the argument may also be a dictionary, providing
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8989
     values for symbolic keys.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8990
     In this case, %a .. %z and %(...) are also allowed.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8991
     (%1..%9 require a numeric key in the dictionary, however)
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  8992
     Also, the values in argArrayOrDictionary may be blocks.
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  8993
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8994
     To get a '%' character, use a '%%'-escape.
24717
55903ace8f1c #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 24686
diff changeset
  8995
     To get an integer-indexed placeHolder followed by another digit, you must use %(digit).
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  8996
10935
7142eab95639 #expandPlaceHoldersWith:in:
Stefan Vogel <sv@exept.de>
parents: 10929
diff changeset
  8997
     See also bindWith:... for VisualAge compatibility.
10939
d0ca31c1d1e9 #expandPlaceHoldersWith: handle %<cr> %<tab> etc
Stefan Vogel <sv@exept.de>
parents: 10935
diff changeset
  8998
     Use %<cr> to insert a CR and %<tab> to insert a TAB."
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  8999
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  9000
    ^ self 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  9001
        expandPlaceholders:$% with:argArrayOrDictionary 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  9002
        ignoreNumericEscapes:false 
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  9003
        ignoreNonNumericEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  9004
        ignoreSpecialEscapes:false
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  9005
        requireParentheses:true
24541
e404499bb36c #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24539
diff changeset
  9006
        ifKeyAbsent:nil
24410
2469d94fc9b7 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24407
diff changeset
  9007
        on:aStream
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9008
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9009
    "
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9010
     String streamContents:[:s|
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9011
        'hello %1' expandPlaceholdersWith:#('world') on:s.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9012
        s cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9013
        'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') on:s.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9014
        s cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9015
        'hello %2; how is %1' expandPlaceholdersWith:#('world' 'this') on:s.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9016
        s cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9017
        '%1 plus %2 gives %3 ' expandPlaceholdersWith:#(4 5 9) on:s.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9018
        s cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9019
        '%%(1)0 gives %(1)0' expandPlaceholdersWith:#(123) on:s.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9020
        s cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9021
        '%%10 gives %10' expandPlaceholdersWith:#(123) on:s.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9022
        s cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9023
        '%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholdersWith:#(123) on:s.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9024
        s cr.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9025
        '%test gives %1' expandPlaceholdersWith:#(123) on:s.
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9026
     ]
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9027
    "
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9028
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9029
    "
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9030
     |dict|
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9031
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9032
     dict := Dictionary new.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9033
     dict at:1 put:'one'.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9034
     dict at:$a put:'AAAAA'.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9035
     dict at:$b put:[ Time now ].
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9036
     String streamContents:[:s|
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9037
         'hello %1 %a %b' expandPlaceholdersWith:dict on:s.
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9038
     ].
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9039
    "
13008
a27647c36b31 changed: #expandPlaceholdersWith:on:
Claus Gittinger <cg@exept.de>
parents: 12925
diff changeset
  9040
13138
d2eb0eba5907 changed: #expandPlaceholdersWith:on:
Claus Gittinger <cg@exept.de>
parents: 13137
diff changeset
  9041
    "Modified: / 18-11-2010 / 15:43:28 / cg"
23067
a9b2aa8f652a #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23061
diff changeset
  9042
    "Modified: / 14-06-2018 / 11:45:36 / Claus Gittinger"
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9043
!
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  9044
22929
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9045
extractPlaceHolders:escapeCharacter
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9046
    "returns a list of placeholder keys of the form %i,
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9047
     where i is either a single digit (as in %1, %2)
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9048
     or a single letter (as in %a, %z)
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9049
     or a word-key, as in %(one), %(fooBar).
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9050
     For numeric keys, the returned collection contains integers;
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9051
     for non-numeric ones, it includes strings."
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9052
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9053
    |setOfKeys loggingDictionary|
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9054
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9055
    setOfKeys := Set new.
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9056
    loggingDictionary := Plug new.
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9057
    loggingDictionary respondTo:#at: with:[:key | setOfKeys add:key. key asString].
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9058
    loggingDictionary respondTo:#at:ifAbsent: with:[:key :def | setOfKeys add:key. key asString].
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9059
    loggingDictionary respondTo:#includesKey: with:[:key | setOfKeys add:key. true].
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9060
    loggingDictionary respondTo:#isSequenceable with:[false].
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9061
    self expandPlaceholders:escapeCharacter with:loggingDictionary.
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9062
    ^ setOfKeys
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9063
    
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9064
    "
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9065
     self assert:('hello %1 and %2' extractPlaceHolders:$%) asSet = #(1 2) asSet
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9066
     self assert:('hello %9 and %(10)' extractPlaceHolders:$%) asSet = #(9 10) asSet
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9067
     self assert:('hello %a and %(foo) and %1' extractPlaceHolders:$%) asSet = #(1 'a' 'foo') asSet
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9068
     self assert:('hello %a and %(foo) and %1' extractPlaceHolders:$$) asSet = #() asSet
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9069
    "
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9070
!
fda0476a0fbd #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 22924
diff changeset
  9071
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  9072
firstLine
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  9073
    "return the first line of a multiline string"
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  9074
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  9075
    ^ self asCollectionOfSubCollectionsSeparatedBy:(Character cr) do:[:line | ^ line].
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  9076
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  9077
    "
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  9078
     'hello' firstLine
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  9079
     '1\2\3' withCRs firstLine
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  9080
     '\1\2\3' withCRs firstLine
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  9081
    "
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  9082
!
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  9083
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9084
tokensBasedOn:aCharacter
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9085
    "this is an ST-80 alias for the ST/X method
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9086
        asCollectionOfSubstringsSeparatedBy:"
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9087
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9088
    ^ self asCollectionOfSubstringsSeparatedBy:aCharacter
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9089
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9090
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9091
     'hello:world:isnt:this nice' tokensBasedOn:$:
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9092
     'foo,bar,baz' tokensBasedOn:$,
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9093
     '/etc/passwd' asFilename readStream nextLine tokensBasedOn:$:
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9094
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9095
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9096
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9097
withCEscapes
16863
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  9098
    "return a new string consisting of receiver's characters
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9099
     with all special and unprintable characters replaced by \X-character escapes.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9100
     (similar to the way C-language literal Strings are represented).
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9101
     The resulting string will contain only 7-bit ascii characters.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9102
     Emphasis is not supported.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9103
     The following escapes are generated:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9104
        \'      single quote character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9105
        \dQuote double quote character
24514
302407b6b342 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24506
diff changeset
  9106
        \b      backspace character
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9107
        \r      return character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9108
        \n      newline character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9109
        \t      tab character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9110
        \\      the \ character itself
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9111
        \xnn    two digit hex number defining the characters ascii value
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9112
        \unnnn  four digit hex number defining the characters ascii value
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9113
        \Unnnnnnnn  eight digit hex number defining the characters ascii value
16863
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  9114
     This is the opposite of withoutCEscapes.
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9115
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9116
     Sigh: this is named completely wrong (opposite naming of withCRs/witoutCRs),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9117
           but it cannot be changed easily, as these methods are already used heavily
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9118
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9119
25189
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  9120
    |anyEscapeNeeded out|
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9121
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9122
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9123
     first, check if any escape is needed and return the receiver unchanged if not
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9124
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9125
    anyEscapeNeeded := self
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9126
                        contains:[:ch |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9127
                            ((ch codePoint between:32 and:126) not
25080
0547e33c35ac #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24939
diff changeset
  9128
                            or:[ch == $' or:[ch == $" or:[ch == $\]]])
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9129
                        ].
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9130
    anyEscapeNeeded ifFalse:[ ^ self ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9131
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9132
    self hasChangeOfEmphasis ifTrue:[ self error:'emphasis not supported' ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9133
18269
77a84c6693c8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18194
diff changeset
  9134
    out := WriteStream on:(String uninitializedNew:self size-1).
25189
18533df11c50 #REFACTORING by exept
Claus Gittinger <cg@exept.de>
parents: 25187
diff changeset
  9135
    self printWithCEscapesOn:out.
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9136
    ^ out contents
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9137
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9138
    "
25080
0547e33c35ac #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24939
diff changeset
  9139
     'c:\foo\bar\baz' withCEscapes.  
0547e33c35ac #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 24939
diff changeset
  9140
     c'hello\n\tworld' withCEscapes.
24514
302407b6b342 #FEATURE by exept
Claus Gittinger <cg@exept.de>
parents: 24506
diff changeset
  9141
     'hello\b\tworld' withoutCEscapes withCEscapes.
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9142
     'hello\nworld\na\n\tnice\n\t\tstring' withoutCEscapes withCEscapes.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9143
     ('hello ',(Character value:16r1234),' world') withCEscapes
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9144
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9145
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9146
    "Created: / 25-01-2012 / 11:08:16 / cg"
22344
1b2892ef31d6 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22327
diff changeset
  9147
    "Modified: / 12-11-2017 / 12:39:57 / cg"
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9148
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9149
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9150
withCRs
17205
b266cb703584 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17192
diff changeset
  9151
    "return a new string consisting of the receiver's characters
16757
da377b8c79f5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16738
diff changeset
  9152
     with all \-characters replaced by cr-characters.
da377b8c79f5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16738
diff changeset
  9153
     If there are no backslashes, return the original"
da377b8c79f5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16738
diff changeset
  9154
16759
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  9155
    ^ self copyReplaceAll:$\ with:(Character cr) ifNone:self
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9156
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9157
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9158
     'hello\world' withCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9159
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9160
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9161
    "Modified: / 18.7.1998 / 22:53:02 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9162
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9163
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9164
withEscapes
15405
ef2e23943761 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15400
diff changeset
  9165
    <resource: #obsolete>
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9166
    "has been renamed; the name withEscapes is misleading"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9167
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9168
    self obsoleteMethodWarning:'use withoutCEscapes'.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9169
    ^ self withoutCEscapes.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9170
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9171
    "Modified: / 25-01-2012 / 10:42:30 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9172
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9173
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9174
withMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9175
    "return a copy of the receiver with all match characters escaped
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9176
     by $\ characters (to be usable as a match string).
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9177
     Return the receiver, if there are none."
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9178
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  9179
    |in out c escape|
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  9180
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  9181
    escape := self class matchEscapeCharacter.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9182
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9183
    in := self readStream.
7986
715c72e62d58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
  9184
    out := WriteStream on:(self species new:self size).
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9185
    [in atEnd] whileFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9186
        c := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9187
        (c == escape or:['*[#' includes:c]) ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9188
            out nextPut:$\.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9189
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9190
        out nextPut:c.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9191
    ].
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9192
    ^ out contents.
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9193
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9194
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9195
     '*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9196
     '\*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9197
     '*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9198
     '\\*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9199
     'foo*' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9200
     'foo\*' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9201
     'foo\' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9202
     'f*o*o' withMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9203
    "
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9204
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9205
    "Modified: 2.4.1997 / 18:13:04 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9206
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9207
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9208
withSeparatorsCompacted
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9209
    "return a new string with each sequence of whiteSpace replaced by a single space character.
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9210
     Preserves a leading/trailing space."
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9211
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9212
    ^ self species streamContents:[:s |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9213
        |skipping|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9214
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9215
        skipping := false.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9216
        1 to:self size do:[:idx |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9217
            |char|
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9218
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9219
            char := self at:idx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9220
            char isSeparator ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9221
                s nextPut:char.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9222
                skipping := false.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9223
            ] ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9224
                skipping ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9225
                    s nextPut:(Character space).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9226
                    skipping := true
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9227
                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9228
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9229
        ]
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9230
    ]
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9231
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9232
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9233
     'hello wwww'         withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9234
     'hello    wwww'      withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9235
     '  hello wwww'       withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9236
     '  hello wwww   '    withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9237
     '  hello    wwww   ' withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9238
     'hel   lo www   w'   withSeparatorsCompacted
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9239
    "
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9240
!
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  9241
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9242
withSeparatorsReplacedBy:replacementCharacter
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9243
    "return a new string with each separator (whitespace) replaced by replacementCharacter.
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9244
     Typically used with space as replacementCharacter"
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9245
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9246
    ^ self species streamContents:[:s |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9247
        self do:[:ch |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9248
            ch isSeparator ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9249
                s nextPut:replacementCharacter
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9250
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9251
                s nextPut:ch.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9252
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9253
        ]
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9254
    ]
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9255
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9256
    "
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9257
     'hello wwww'         withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9258
     'hello ww ww'        withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9259
     '  hello wwww'       withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9260
     'hel   lo www   w'   withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9261
     'hel
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9262
 lo www
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9263
w'   withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9264
    "
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9265
!
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  9266
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9267
withTabs
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  9268
    "return a string consisting of the receiver's characters
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9269
     where leading spaces are replaced by tabulator characters (assuming 8-col tabs).
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9270
     Notice: if the receiver does not contain any tabs, it is returned unchanged;
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9271
     otherwise a new string is returned.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9272
     Limitation: only the very first spaces are replaced
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9273
                 (i.e. if the receiver contains newLine characters,
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9274
                  no tabs are inserted after those lineBreaks)"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9275
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9276
    |idx   "{ SmallInteger }"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9277
     nTabs "{ SmallInteger }"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9278
     newString|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9279
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9280
    idx := self findFirst:[:c | (c ~~ Character space)].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9281
    nTabs := (idx-1) // 8.
5815
4acdd87a77d4 // can return negative numbers.
Stefan Vogel <sv@exept.de>
parents: 5795
diff changeset
  9282
    nTabs <= 0 ifTrue:[^ self].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9283
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9284
    "any tabs"
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  9285
    newString := self species new:(self size - (nTabs * 7)).
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9286
    newString atAll:(1 to:nTabs) put:(Character tab).
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9287
    newString replaceFrom:(nTabs + 1) with:self startingAt:(nTabs * 8 + 1).
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9288
    ^ newString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9289
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9290
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9291
     '12345678901234567890' withTabs
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9292
     '       8901234567890' withTabs
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9293
     '        901234567890' withTabs
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9294
     '               67890' withTabs
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9295
     '                7890' withTabs
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9296
     '                 890' withTabs
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9297
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9298
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9299
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9300
withTabsExpanded
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  9301
    "return a string consisting of the receiver's characters,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9302
     where all tabulator characters are expanded into spaces (assuming 8-col tabs).
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9303
     Notice: if the receiver does not contain any tabs, it is returned unchanged;
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9304
     otherwise a new string is returned.
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9305
     This does handle multiline strings."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9306
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9307
    ^ self withTabsExpanded:8
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9308
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9309
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9310
     ('1' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9311
     ('12345' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9312
     ('123456' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9313
     ('1234567' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9314
     ('12345678' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9315
     ('123456789' , Character tab asString , 'x') withTabsExpanded
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9316
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9317
     (String with:Character tab
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9318
             with:Character tab
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9319
             with:$1) withTabsExpanded
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9320
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9321
     (String with:Character tab
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9322
             with:$1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9323
             with:Character tab
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9324
             with:$2) withTabsExpanded
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9325
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9326
     (String with:Character tab
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9327
             with:$1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9328
             with:Character cr
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9329
             with:Character tab
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9330
             with:$2) withTabsExpanded
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9331
    "
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9332
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9333
    "Modified: 12.5.1996 / 13:05:10 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9334
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9335
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9336
withTabsExpanded:numSpaces
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  9337
    "return a string consisting of the receiver's characters,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9338
     where all tabulator characters are expanded into spaces (assuming numSpaces-col tabs).
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9339
     Notice: if the receiver does not contain any tabs, it is returned unchanged;
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9340
     otherwise a new string is returned.
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9341
     This does handle multiline strings."
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  9342
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9343
    |col    "{ SmallInteger }"
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9344
     str ch
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9345
     dstIdx "{ SmallInteger }"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9346
     newSz  "{ SmallInteger }"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9347
     sz "{ SmallInteger }"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9348
     hasEmphasis e|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9349
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9350
    (self includes:(Character tab)) ifFalse:[^ self].
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9351
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9352
    sz := self size.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9353
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9354
    "/ count the new size first, instead of
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9355
    "/ multiple resizing (better for large strings)
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9356
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9357
    col := 1. newSz := 0.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9358
    1 to:sz do:[:srcIdx |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9359
        ch := self at:srcIdx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9360
        ch == Character tab ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9361
            col := col + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9362
            newSz := newSz + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9363
            ch == Character cr ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9364
                col := 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9365
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9366
        ] ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9367
            (col \\ numSpaces) to:numSpaces do:[:ii |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9368
                newSz := newSz + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9369
                col := col + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9370
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9371
        ]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9372
    ].
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9373
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9374
    str := self species new:newSz.
23428
9a1a7a4b8bfb #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23400
diff changeset
  9375
    (str isText and:[self bitsPerCharacter > 8]) ifTrue:[
9a1a7a4b8bfb #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23400
diff changeset
  9376
        str := Text string:(Unicode16String new:newSz)
9a1a7a4b8bfb #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23400
diff changeset
  9377
    ].
9a1a7a4b8bfb #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 23400
diff changeset
  9378
    
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9379
    hasEmphasis := self hasChangeOfEmphasis.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9380
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9381
    col := 1. dstIdx := 1.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9382
    1 to:sz do:[:srcIdx |
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9383
        ch := self at:srcIdx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9384
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9385
        ch == Character tab ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9386
            col := col + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9387
            ch == Character cr ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9388
                col := 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9389
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9390
            hasEmphasis ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9391
                e := self emphasisAt:srcIdx.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9392
                str emphasisAt:dstIdx put:e
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9393
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9394
            str at:dstIdx put:ch.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9395
            dstIdx := dstIdx + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9396
        ] ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9397
            (col \\ numSpaces) to:numSpaces do:[:ii |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9398
                str at:dstIdx put:Character space.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9399
                dstIdx := dstIdx + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9400
                col := col + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9401
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9402
        ]
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9403
    ].
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9404
    ^ str
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9405
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9406
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9407
     ('1' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9408
     ('1' , Character tab asString , 'x') withTabsExpanded:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9409
     ('12345' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9410
     ('123456' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9411
     ('1234567' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9412
     ('12345678' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9413
     ('123456789' , Character tab asString , 'x') withTabsExpanded
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9414
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9415
     (String with:Character tab
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9416
             with:Character tab
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9417
             with:$1) withTabsExpanded
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9418
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9419
     (String with:Character tab
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9420
             with:$1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9421
             with:Character tab
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9422
             with:$2) withTabsExpanded
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9423
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9424
     (String with:Character tab
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9425
             with:$1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9426
             with:Character cr
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9427
             with:Character tab
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9428
             with:$2) withTabsExpanded
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9429
    "
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  9430
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  9431
    "Modified: 12.5.1996 / 13:05:10 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9432
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9433
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9434
withoutAllSpaces
16855
c088880a590b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16785
diff changeset
  9435
    "return a copy of the receiver with all whitespace removed"
c088880a590b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16785
diff changeset
  9436
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9437
    ^ self asCollectionOfWords asStringWith:''.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9438
"/    |col string|
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9439
"/
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9440
"/    col := self asCollectionOfWords.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9441
"/    string := String new.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9442
"/    col do:[:el |
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9443
"/       string := string,el
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9444
"/    ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9445
"/    ^string
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9446
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9447
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9448
     'hello wwww'  withoutAllSpaces
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9449
     'hel   lo www   w'  withoutAllSpaces
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9450
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9451
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9452
    "Modified: / 18.7.1998 / 22:53:08 / cg"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9453
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9454
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9455
withoutCEscapes
15628
4fe28df5850d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15605
diff changeset
  9456
    "return a new string consisting of receiver's characters
22205
836f6b0ef8a5 #DOCUMENTATION by mawalch
mawalch
parents: 22157
diff changeset
  9457
     with all \X-character escapes replaced by corresponding characters.
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9458
     (similar to the way C-language Strings are converted).
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9459
     The following escapes are supported:
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9460
        \r      return character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9461
        \n      newline character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9462
        \b      backspace character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9463
        \f      formfeed character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9464
        \t      tab character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9465
        \e      escape character
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9466
        \\      the \ character itself
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9467
        \nnn    three digit octal number defining the characters ascii value
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9468
        \xnn    two digit hex number defining the characters ascii value
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9469
        \unnnn  four digit hex number defining the characters unicode value
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9470
        \Unnnnnnnn  eight digit hex number defining the characters unicode value
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9471
        \other  other
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9472
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9473
     Notice, that \' is NOT a valid escape, since the general syntax of
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9474
     string constants is not affected by this method.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9475
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9476
     Although easily implementable, this is NOT done automatically
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9477
     by the compiler (due to a lack of a language standard for this).
22205
836f6b0ef8a5 #DOCUMENTATION by mawalch
mawalch
parents: 22157
diff changeset
  9478
     However, the compiler may detect sends of #withEscapes to string literals
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9479
     and place a modified string constant into the binary/byte-code.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9480
     Therefore, no runtime penalty will be payed for using these escapes.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9481
     (not in pre 2.11 versions)
16863
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  9482
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  9483
     This is the opposite of withCEscapes.
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9484
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9485
     Sigh: this is named completely wrong (opposite naming of withCRs/witoutCRs),
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9486
           but it cannot be changed easily, as these methods are already used heavily
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9487
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9488
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9489
    |val     "{ SmallInteger }"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9490
     in out nextChar nDigits|
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9491
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9492
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9493
     first, see if there is any escape; if not, return the receiver unchanged
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9494
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9495
    (self includes:$\) ifFalse:[^ self ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9496
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9497
    self hasChangeOfEmphasis ifTrue:[ self error:'emphasis not supported' ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9498
    out := CharacterWriteStream on:(String new:self size - 1).
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9499
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9500
    in := ReadStream on:self.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9501
    [in atEnd] whileFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9502
        nextChar := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9503
        nextChar == $\ ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9504
            in atEnd ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9505
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9506
                nextChar := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9507
                nextChar == $r ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9508
                    nextChar := Character return
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9509
                ] ifFalse:[ nextChar == $n ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9510
                    nextChar := Character nl
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9511
                ] ifFalse:[ nextChar == $b ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9512
                    nextChar := Character backspace
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9513
                ] ifFalse:[ nextChar == $f ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9514
                    nextChar := Character newPage
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9515
                ] ifFalse:[ nextChar == $t ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9516
                    nextChar := Character tab
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9517
                ] ifFalse:[ nextChar == $e ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9518
                    nextChar := Character esc
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9519
                ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9520
                    nextChar == $0 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9521
                        val := 0.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9522
                        nextChar := in peek.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9523
                        nDigits := 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9524
                        [nextChar notNil and:[nextChar isDigit and:[nDigits <= 3]]] whileTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9525
                            val := (val * 8) + nextChar digitValue.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9526
                            nextChar := in nextPeek.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9527
                            nDigits := nDigits + 1.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9528
                        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9529
                        nextChar := Character value:val.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9530
                    ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9531
                        val := 0.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9532
                        nextChar == $x ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9533
                            2 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9534
                                nextChar := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9535
                                val := (val * 16) + nextChar digitValue.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9536
                            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9537
                            nextChar := Character value:val.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9538
                        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9539
                            nextChar == $u ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9540
                                4 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9541
                                    nextChar := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9542
                                    val := (val * 16) + nextChar digitValue.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9543
                                ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9544
                                nextChar := Character value:val.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9545
                            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9546
                                nextChar == $U ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9547
                                    8 timesRepeat:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9548
                                        nextChar := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9549
                                        val := (val * 16) + nextChar digitValue.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9550
                                    ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9551
                                    nextChar := Character value:val.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9552
                                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9553
                            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9554
                        ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9555
                    ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9556
                ]]]]]].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9557
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9558
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9559
        out nextPut:nextChar.
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9560
    ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9561
    ^ out contents
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9562
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9563
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9564
     'hello world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9565
     'hello\world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9566
     'hello\world\' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9567
     'hello world\' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9568
     'hello\tworld' withoutCEscapes
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9569
     'hello\nworld\na\n\tnice\n\t\tstring' withoutCEscapes
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9570
     'hello\tworld\n' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9571
     'hello\010world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9572
     'hello\r\nworld' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9573
     'hello\r\n\x08world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9574
     '0\x080' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9575
     '0\u12340' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9576
     '0\U123456780' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9577
     '0\0a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9578
     '0\00a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9579
     '0\000a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9580
     '0\0000a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9581
     '0\00000a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9582
     '0\03770' withoutCEscapes
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9583
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9584
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9585
    "Created: / 25-01-2012 / 10:41:44 / cg"
22205
836f6b0ef8a5 #DOCUMENTATION by mawalch
mawalch
parents: 22157
diff changeset
  9586
    "Modified (comment): / 23-08-2017 / 11:07:43 / mawalch"
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9587
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  9588
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9589
withoutCRs
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  9590
    "return a new collection consisting of receiver's elements
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9591
     with all cr-characters replaced by \-characters.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9592
     This is the reverse operation of withCRs."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9593
16759
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  9594
    ^ self copyReplaceAll:(Character cr) with:$\ ifNone:self
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  9595
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9596
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9597
     'hello
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9598
world' withoutCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9599
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9600
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9601
    "Modified: / 18.7.1998 / 22:53:08 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9602
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9603
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9604
withoutLeadingSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9605
    "return a copy of myself without leading separators.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9606
     Notice: this does remove tabs, newline or any other whitespace.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9607
     Returns an empty string, if the receiver consist only of whitespace."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9609
    |index|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9610
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9611
    index := self indexOfNonSeparatorStartingAt:1.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9612
    index ~~ 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9613
        index == 1 ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9614
            ^ self
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9615
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9616
        ^ self copyFrom:index
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9617
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9618
    ^ ''
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9619
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9620
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9621
     '    foo    ' withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9622
     'foo    '     withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9623
     '    foo'     withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9624
     '       '     withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9625
     'foo'         withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9626
     ('  ' , Character tab asString , ' foo   ') withoutLeadingSeparators inspect
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9627
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9628
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9629
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9630
withoutMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9631
    "return a copy of the receiver with all $\ removed or
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9632
     the receiver, if there are none."
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9633
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  9634
    |in out c escape|
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  9635
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  9636
    escape := self class matchEscapeCharacter.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9637
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9638
    in := self readStream.
8222
f2c454a9a038 replaced '' writeStream by String writeStream
Claus Gittinger <cg@exept.de>
parents: 8124
diff changeset
  9639
    out := self species writeStream.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9640
    [in atEnd] whileFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9641
        c := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9642
        c == escape ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9643
            in atEnd ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9644
                c := in next.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9645
            ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9646
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9647
        out nextPut:c.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9648
    ].
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9649
    ^ out contents.
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9650
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9651
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9652
     '*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9653
     '\*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9654
     '*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9655
     '\\*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9656
     'foo*' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9657
     'foo\*' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9658
     'foo\' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9659
     'f\*o\*o' withoutMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9660
    "
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9661
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  9662
    "Modified: 30.6.1997 / 13:40:23 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9663
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9664
23249
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9665
withoutPrefix:aStringOrCharacter caseSensitive:caseSensitive
23234
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9666
    "if the receiver startsWith aString, return a copy without it.
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9667
     Otherwise return the receiver"
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9668
23249
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9669
    (self startsWith:aStringOrCharacter caseSensitive:caseSensitive) ifTrue:[
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9670
        aStringOrCharacter isCharacter ifTrue:[
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9671
            ^ self copyFrom:2
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9672
        ] ifFalse:[    
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9673
            ^ self copyFrom:aStringOrCharacter size+1
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9674
        ].
23234
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9675
    ].
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9676
    ^ self
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9677
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9678
    "
24142
ec133d719bed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24120
diff changeset
  9679
     'Helloworld' withoutPrefix:'hello' caseSensitive:false
ec133d719bed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24120
diff changeset
  9680
     'Helloworld' withoutPrefix:'foo' caseSensitive:false
ec133d719bed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24120
diff changeset
  9681
     'Helloworld' withoutPrefix:$h caseSensitive:false
ec133d719bed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24120
diff changeset
  9682
     'Helloworld' withoutPrefix:#( $h ) caseSensitive:false
23234
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9683
    "
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9684
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9685
    "Created: / 27-07-2018 / 08:30:03 / Claus Gittinger"
23249
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9686
    "Modified: / 31-07-2018 / 17:05:53 / Claus Gittinger"
24142
ec133d719bed #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 24120
diff changeset
  9687
    "Modified (comment): / 24-05-2019 / 09:23:30 / Claus Gittinger"
23234
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9688
!
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9689
10671
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  9690
withoutQuotes
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9691
    "/ remove quotes ($" and $') from the front and end of myself (if matching)"
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9692
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9693
    |firstChar|
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9694
17024
f0ef2620b98b class: CharacterArray
ca
parents: 17021
diff changeset
  9695
    self isEmpty ifTrue:[^ self].
f0ef2620b98b class: CharacterArray
ca
parents: 17021
diff changeset
  9696
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9697
    firstChar := self first.
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9698
    ((firstChar == $") or:[firstChar == $']) ifFalse:[^ self].
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9699
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9700
    self last == firstChar ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
  9701
        ^ self copyFrom:2 to:(self size-1)
10671
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  9702
    ].
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9703
    ^ self
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9704
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9705
    "/
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9706
    "/ '"hello"' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9707
    "/ '''hello''' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9708
    "/ 'hello' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9709
    "/ '"hello' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  9710
    "/ 'hello"' withoutQuotes
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  9711
    "/
10671
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  9712
!
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  9713
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9714
withoutSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9715
    "return a copy of myself without leading and trailing whitespace.
4156
3079a5a94617 comments
Claus Gittinger <cg@exept.de>
parents: 4117
diff changeset
  9716
     (but whiteSpace in-between is preserved)
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9717
     Whitespace is space, tab, newline, formfeed.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9718
     Use withoutSpaces, if you want to remove spaces only."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9719
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  9720
    ^ self trimForWhich:[:ch | ch isSeparator]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9721
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9722
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9723
     '    foo    ' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9724
     '    foo' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9725
     'foo    ' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9726
     '       ' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9727
     ('  foo' , Character tab asString , '    ') withoutSeparators inspect
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  9728
     '    foo    ' asUnicode16String withoutSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9729
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9730
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9731
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9732
withoutSpaces
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9733
    "return a copy of myself without leading and trailing spaces.
4156
3079a5a94617 comments
Claus Gittinger <cg@exept.de>
parents: 4117
diff changeset
  9734
     (but spaces in-between are preserved)
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9735
     Notice: this does NOT remove tabs, newline or any other whitespace.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9736
     Use withoutSeparators for this."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9737
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  9738
    ^ self trimForWhich:[:ch | ch == Character space]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9739
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9740
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9741
     '    foo    ' withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9742
     'foo    '     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9743
     '    foo'     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9744
     '       '     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9745
     'a     b'     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9746
     ('  foo' , Character tab asString , '    ') withoutSpaces inspect
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9747
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9748
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9749
23249
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9750
withoutSuffix:aStringOrCharacter caseSensitive:caseSensitive
23234
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9751
    "if the receiver endsWith aString, return a copy without it.
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9752
     Otherwise return the receiver"
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9753
23249
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9754
    (self endsWith:aStringOrCharacter caseSensitive:caseSensitive) ifTrue:[
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9755
        aStringOrCharacter isCharacter ifTrue:[
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9756
            ^ self copyButLast:1
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9757
        ] ifFalse:[
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9758
            ^ self copyButLast:aStringOrCharacter size
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9759
        ].
23234
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9760
    ].
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9761
    ^ self
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9762
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9763
    "
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9764
     'helloworld' withoutSuffix:'world'
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9765
     'helloworld' withoutSuffix:'foo'
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9766
    "
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9767
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9768
    "Created: / 27-07-2018 / 08:30:10 / Claus Gittinger"
23249
599b1ef2acbe #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23241
diff changeset
  9769
    "Modified: / 31-07-2018 / 17:06:58 / Claus Gittinger"
23234
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9770
!
f61f6292ee3f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23209
diff changeset
  9771
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9772
withoutTrailingSeparators
915
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  9773
    "return a copy of myself without trailing separators.
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  9774
     Notice: this does remove tabs, newline or any other whitespace.
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  9775
     Returns an empty string, if the receiver consist only of whitespace."
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  9776
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  9777
    ^ self withoutTrailingForWhich:[:ch | ch isSeparator]
915
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  9778
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  9779
    "
25099
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9780
     '    foo    ' asUnicodeString withoutTrailingSeparators
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9781
     'foo    '     asUnicodeString withoutTrailingSeparators
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9782
     '    foo'     asUnicodeString withoutTrailingSeparators
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9783
     '       '     asUnicodeString withoutTrailingSeparators
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9784
     'foo'         asUnicodeString withoutTrailingSeparators
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9785
     ('  ' , Character tab, ' foo   ') asUnicodeString withoutTrailingSeparators inspect
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9786
     ('   foo' , Character tab) asUnicodeString withoutTrailingSeparators inspect
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9787
    "
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9788
eac648c453af #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 25094
diff changeset
  9789
    "Modified (comment): / 12-12-2019 / 14:15:09 / Stefan Vogel"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9790
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9791
25204
b12f8693fe6f #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 25196
diff changeset
  9792
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9793
!CharacterArray methodsFor:'substring searching'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9794
15055
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9795
findRangeOfString:subString
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9796
    "find a substring. if found, return the start- and endIndex;
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9797
     if not found, return an empty interval."
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9798
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9799
    ^ self rangeOfSubCollection:subString startingAt:1 ifAbsent:[0 to:-1] caseSensitive:true
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9800
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9801
    "
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9802
     'hello world' findRangeOfString:'llo'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9803
     'hello world' findRangeOfString:'ole'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9804
    "
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9805
!
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  9806
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9807
findString:subString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9808
    "find a substring. if found, return the index;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9809
     if not found, return 0."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9810
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9811
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:0 caseSensitive:true
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9812
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9813
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9814
     'hello world' findString:'llo'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9815
     'hello world' findString:'ole'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9816
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9817
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9818
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9819
findString:subString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9820
    "find a substring. if found, return the index;
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9821
     if not found, return 0."
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9822
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9823
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:0 caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9824
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9825
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9826
     'hello world' findString:'LLo' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9827
     'hello world' findString:'LLo' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9828
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9829
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9830
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9831
findString:subString ifAbsent:exceptionBlock
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9832
    "find a substring. If found, return the index;
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9833
     if not found, return the result of evaluating exceptionBlock."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9834
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9835
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:exceptionBlock caseSensitive:true
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9836
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9837
11018
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9838
findString:subString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  9839
    <resource: #obsolete>
11018
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9840
    "find a substring. if found, return the index;
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9841
     if not found, return 0."
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9842
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9843
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:0 caseSensitive:ignoreCase not
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9844
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9845
    "
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9846
     'hello world' findString:'LLo' ignoreCase:false
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9847
     'hello world' findString:'LLo' ignoreCase:true
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9848
    "
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9849
!
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  9850
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9851
findString:subString startingAt:index
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9852
    "find a substring, starting at index. if found, return the index;
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9853
     if not found, return 0."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9854
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9855
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:0 caseSensitive:true
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9856
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9857
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9858
     'hello yello' findString:'llo' startingAt:1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9859
     'hello yello' findString:'llo' startingAt:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9860
     'hello yello' findString:'llo' startingAt:15
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9861
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9862
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9863
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9864
findString:subString startingAt:index ifAbsent:exceptionBlock
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9865
    "find a substring, starting at index. if found, return the index;
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9866
     if not found, return the result of evaluating exceptionBlock."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9867
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9868
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:true
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9869
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9870
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  9871
findString:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive
10929
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  9872
    "find a substring, starting at index. if found, return the index;
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  9873
     if not found, return the result of evaluating exceptionBlock."
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  9874
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  9875
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  9876
!
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  9877
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9878
includesString:aString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9879
    "return true, if a substring is contained in the receiver"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9880
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9881
    ^ (self indexOfSubCollection:aString startingAt:1 ifAbsent:0 caseSensitive:true) ~~ 0
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9882
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  9883
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  9884
     'hello world' includesString:'hel'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  9885
     'hello world' includesString:'rld'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9886
     'hello world' includesString:'llo'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9887
     'hello world' includesString:'LLO'
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  9888
     'hello world' includesString:''
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9889
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9890
!
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  9891
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  9892
includesString:aString caseSensitive:caseSensitive
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9893
    "return true, if a substring is contained in the receiver"
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9894
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9895
    ^ (self indexOfSubCollection:aString startingAt:1 ifAbsent:0 caseSensitive:caseSensitive) ~~ 0
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9896
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9897
    "
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9898
     'hello world' includesString:'hel' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9899
     'hello world' includesString:'HEL' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9900
     'hello world' includesString:'HEL' caseSensitive:false
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9901
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9902
     'hello world' includesString:'wor' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9903
     'hello world' includesString:'WOR' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9904
     'hello world' includesString:'WOR' caseSensitive:false
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  9905
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9906
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  9907
23060
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9908
indexOfString:aString
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9909
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9910
    "find a substring. If found, return the index; if not found, return 0."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9911
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9912
    ^ self indexOfSubCollection:aString startingAt:1 ifAbsent:[0] caseSensitive:true 
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9913
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9914
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9915
     'hello world' indexOfString:'hello' -> 1
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9916
     'hello world' indexOfString:'world' -> 7
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9917
     'hello world' indexOfString:'World' -> 0
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9918
     'hello world' indexOfString:'World' caseSensitive:false -> 7
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9919
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9920
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9921
    "Modified (format): / 08-06-2018 / 14:43:15 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9922
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9923
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9924
indexOfString:aString caseSensitive:caseSensitive
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9925
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9926
    "find a substring. If found, return the index; if not found, return 0."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9927
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9928
    ^ self indexOfSubCollection:aString startingAt:1 ifAbsent:[0] caseSensitive:caseSensitive 
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9929
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9930
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9931
     'hello world' indexOfString:'hello' -> 1
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9932
     'hello world' indexOfString:'world' -> 7
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9933
     'hello world' indexOfString:'World' -> 0
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9934
     'hello world' indexOfString:'World' caseSensitive:false -> 7
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9935
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9936
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9937
    "Created: / 08-06-2018 / 14:39:18 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9938
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9939
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9940
indexOfString:aString caseSensitive:caseSensitive ifAbsent:exceptionValue
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9941
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9942
    "find a substring. If found, return the index; if not found, return 0."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9943
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9944
    ^ self indexOfSubCollection:aString startingAt:1 ifAbsent:exceptionValue caseSensitive:caseSensitive  
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9945
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9946
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9947
     'abcdefabcdef' indexOfString:'fab' ifAbsent:[999] -> 6
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9948
     'abcdefabcdef' indexOfString:'Fab' ifAbsent:[999] -> 999
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9949
     'abcdefabcdef' indexOfString:'Fab' caseSensitive:false ifAbsent:[999] -> 6
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9950
     'abcdefabcdef' indexOfString:'xxx' caseSensitive:false ifAbsent:[999] -> 999
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9951
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9952
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9953
    "Created: / 08-06-2018 / 14:40:21 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9954
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9955
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9956
indexOfString:aString caseSensitive:caseSensitive startingAt:startIndex 
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9957
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9958
    "find a substring. If found, return the index; if not found, return 0."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9959
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9960
    ^ self indexOfSubCollection:aString startingAt:startIndex ifAbsent:[0] caseSensitive:caseSensitive
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9961
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9962
    "Created: / 08-06-2018 / 14:44:17 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9963
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9964
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9965
indexOfString:aString caseSensitive:caseSensitive startingAt:startIndex ifAbsent:exceptionalValue
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9966
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9967
    "find a substring.
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9968
     If found, return the index; if not found, the value from exceptionalValue."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9969
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9970
    ^ self indexOfSubCollection:aString startingAt:startIndex ifAbsent:exceptionalValue caseSensitive:caseSensitive
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9971
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9972
    "Created: / 08-06-2018 / 14:42:33 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9973
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9974
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9975
indexOfString:aString ifAbsent:exceptionValue
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9976
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9977
    "find a substring. If found, return the index; if not found, return 0."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9978
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9979
    ^ self indexOfSubCollection:aString startingAt:1 ifAbsent:exceptionValue caseSensitive:true 
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9980
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9981
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9982
     'abcdefabcdef' indexOfString:'fab' ifAbsent:[999] -> 6
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9983
     'abcdefabcdef' indexOfString:'Fab' ifAbsent:[999] -> 999
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9984
     'abcdefabcdef' indexOfString:'Fab' caseSensitieve:false ifAbsent:[999] -> 999
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9985
     'abcdefabcdef' indexOfString:'xxx' ifAbsent:[999] -> 999
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9986
    "
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9987
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9988
    "Modified: / 08-06-2018 / 14:43:44 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9989
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9990
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9991
indexOfString:aString startingAt:startIndex
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9992
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9993
    "find a substring. If found, return the index; if not found, return 0."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9994
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9995
    ^ self indexOfSubCollection:aString startingAt:startIndex ifAbsent:[0] caseSensitive:true
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9996
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9997
    "Modified: / 08-06-2018 / 14:37:52 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9998
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
  9999
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10000
indexOfString:aString startingAt:startIndex ifAbsent:exceptionalValue
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10001
    "VSE and V'age compatibility"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10002
    "find a substring.
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10003
     If found, return the index; if not found, the value from exceptionalValue."
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10004
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10005
    ^ self indexOfSubCollection:aString startingAt:startIndex ifAbsent:exceptionalValue caseSensitive:true
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10006
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10007
    "Modified: / 08-06-2018 / 14:38:12 / Claus Gittinger"
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10008
!
4220704d8a1f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 23009
diff changeset
 10009
18671
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
 10010
indexOfSubCollection:subString caseSensitive:caseSensitive
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
 10011
    "find a substring, starting at index. if found, return the index;
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10012
     if not found, return the result of evaluating exceptionBlock."
18671
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
 10013
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
 10014
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:[0] caseSensitive:caseSensitive.
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10015
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10016
    "Modified (comment): / 28-03-2017 / 15:53:30 / stefan"
18671
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
 10017
!
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
 10018
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10019
indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10020
    "find a substring, starting at index. if found, return the index;
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10021
     if not found, return the result of evaluating exceptionBlock."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10022
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10023
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:true.
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10024
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10025
    "Modified (comment): / 28-03-2017 / 15:53:14 / stefan"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10026
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10027
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10028
indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10029
    "find a substring, starting at index. if found, return the index;
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10030
     if not found, return the result of evaluating exceptionBlock.
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10031
     This is a q&d hack - not very efficient"
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10032
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10033
    |firstChar found
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10034
     startIndex "{ Class: SmallInteger }"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10035
     subSize    "{ Class: SmallInteger }"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10036
     mySize     "{ Class: SmallInteger }"
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10037
     runIdx     "{ Class: SmallInteger }"|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10038
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10039
    subSize := subString size.
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
 10040
    subSize == 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10041
        subString isString ifFalse:[
23001
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
 10042
           self proceedableError:'non string argument'.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10043
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10044
        "empty string does not match"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10045
        ^ 0.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10046
        "empty string matches"
15433
426f079817b4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15431
diff changeset
 10047
"/        ^ index
6122
a98958f1c85f handle non-string arg to indexOfSubString:
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
 10048
    ].
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10049
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10050
    mySize := self size.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10051
    firstChar := subString at:1.
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10052
    caseSensitive ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10053
        startIndex := self indexOf:firstChar startingAt:index.
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10054
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10055
        startIndex := self findFirst:[:c | c sameAs:firstChar] startingAt:index.
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
 10056
    ].
21672
829c0b5dcc80 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21670
diff changeset
 10057
    [startIndex ~~ 0] whileTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10058
        runIdx := startIndex.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10059
        found := true.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10060
        1 to:subSize do:[:i |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10061
            runIdx > mySize ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10062
                found := false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10063
            ] ifFalse:[
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10064
                caseSensitive ifTrue:[
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10065
                    (subString at:i) ~= (self at:runIdx) ifTrue:[found := false].
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10066
                ] ifFalse:[
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10067
                    ((subString at:i) sameAs:(self at:runIdx)) ifFalse:[found := false].
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10068
                ].
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10069
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10070
            runIdx := runIdx + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10071
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10072
        found ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10073
            ^ startIndex
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10074
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10075
        caseSensitive ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10076
            startIndex := self indexOf:firstChar startingAt:(startIndex + 1)
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10077
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10078
            startIndex := self findFirst:[:c | c sameAs:firstChar] startingAt:(startIndex + 1).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10079
        ].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10080
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
 10081
    ^ exceptionBlock value
1005
4507487e0be6 more on encoding/decoding (still unfinished)
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
 10082
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10083
    "
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10084
        'АБВГДЕЖ' asLowercase indexOfSubCollection:'ВГДЕ' startingAt:1 ifAbsent:nil caseSensitive:false.
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10085
        'АБВГДЕЖ' indexOfSubCollection:'ВГДЕ' startingAt:1 ifAbsent:nil caseSensitive:true.
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10086
    "
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10087
21672
829c0b5dcc80 #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 21670
diff changeset
 10088
    "Modified: / 23-02-1996 / 15:35:15 / cg"
21675
6931786f3309 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 21672
diff changeset
 10089
    "Modified (comment): / 28-03-2017 / 16:05:48 / stefan"
23001
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
 10090
    "Modified: / 24-05-2018 / 14:55:38 / Claus Gittinger"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10091
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10092
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10093
indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive ignoreDiacritics:ignoreDiacritics
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10094
    "find a substring, starting at index. if found, return the index;
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10095
     if not found, return the result of evaluating exceptionBlock.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
 10096
     This is a q&d hack - not very efficient
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10097
     (see implementation in string, for a much faster algorithm)"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10098
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10099
    |firstChar found
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10100
     startIndex "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10101
     subSize    "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10102
     mySize     "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10103
     runIdx     "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10104
     tester charMap firstCharMapped findNextIndex|
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10105
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10106
    subSize := subString size.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10107
    subSize == 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10108
        subString isString ifFalse:[
23001
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
 10109
           self proceedableError:'non string argument'.
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10110
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10111
        "empty string does not match"
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10112
        ^ 0.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10113
        "empty string matches"
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10114
"/        ^ index
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10115
    ].
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10116
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10117
    mySize := self size.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10118
    firstChar := subString at:1.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10119
    ignoreDiacritics ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10120
        caseSensitive ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10121
            charMap := [:ch | ch asLowercase withoutDiacritics].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10122
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10123
            charMap := [:ch | ch withoutDiacritics].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10124
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10125
        tester := [:c1 :c2 | (charMap value:c1) = (charMap value:c2) ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10126
        firstCharMapped := (charMap value:firstChar).
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10127
        findNextIndex := [:index | self findFirst:[:ch | (charMap value:ch) = firstCharMapped] startingAt:index].
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10128
    ] ifFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10129
        caseSensitive ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10130
            tester := [:c1 :c2 | c1 = c2 ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10131
            findNextIndex := [:index | self indexOf:firstChar startingAt:index].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10132
        ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10133
            tester := [:c1 :c2 | c1 sameAs: c2 ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10134
            findNextIndex := [:index | self findFirst:[:c | c sameAs:firstChar] startingAt:index].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10135
        ].
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10136
    ].
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10137
    startIndex := findNextIndex value:index.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10138
    [startIndex == 0] whileFalse:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10139
        runIdx := startIndex.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10140
        found := true.
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10141
        1 to:subSize do:[:i |
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10142
            runIdx > mySize ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10143
                found := false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10144
            ] ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10145
                (tester value:(subString at:i) value:(self at:runIdx)) ifFalse:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10146
                    found := false
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10147
                ]
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10148
            ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10149
            runIdx := runIdx + 1
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10150
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10151
        found ifTrue:[
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10152
            ^ startIndex
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10153
        ].
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10154
        startIndex := findNextIndex value:(startIndex + 1)
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10155
    ].
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10156
    ^ exceptionBlock value
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10157
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10158
    "
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
 10159
     'bla depot bla dépots' indexOfSubCollection:'dep' startingAt:1 ifAbsent:0 caseSensitive:false ignoreDiacritics:true. 5
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
 10160
     'bla depot bla dépots' indexOfSubCollection:'dep' startingAt:6 ifAbsent:0 caseSensitive:false ignoreDiacritics:true. 0
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
 10161
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
 10162
     'bla depot bla dépots' indexOfSubCollection:'dep' startingAt:1 ifAbsent:0 caseSensitive:false ignoreDiacritics:false. 5
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
 10163
     'bla depot bla dépots' indexOfSubCollection:'dep' startingAt:6 ifAbsent:0 caseSensitive:false ignoreDiacritics:false. 0
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10164
    "
23001
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
 10165
92776085244b #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 22999
diff changeset
 10166
    "Modified: / 24-05-2018 / 14:55:43 / Claus Gittinger"
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10167
!
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
 10168
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10169
lastIndexOfString:aString
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10170
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
 10171
    "find the last occurrence of substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10172
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10173
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10174
    ^ self lastIndexOfSubCollection:aString startingAt:(self size-aString size+1) ifAbsent:[0]
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10175
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10176
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10177
     'abcdefabcdef' lastIndexOfString:'abc'
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10178
     'abcdefabcdef' lastIndexOfString:'abc' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10179
     'abcdefabcdef' lastIndexOfString:'xxx' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10180
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10181
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10182
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10183
lastIndexOfString:aString ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10184
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
 10185
    "find the last occurrence of substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10186
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10187
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10188
    ^ self lastIndexOfSubCollection:aString startingAt:(self size-aString size+1) ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10189
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10190
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10191
     'abcdefabcdef' lastIndexOfString:'abc' ifAbsent:[999]
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
 10192
     'abcdefabcdef' lastIndexOfString:'xxx' ifAbsent:[999]
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10193
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10194
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10195
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10196
lastIndexOfString:aString startingAt:startIndex
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10197
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
 10198
    "find the last occurrence of a substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10199
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10200
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10201
    ^ self lastIndexOfSubCollection:aString startingAt:startIndex ifAbsent:[0]
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10202
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10203
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10204
     'abcdefabcdef' lastIndexOfString:'abc'
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10205
     'abcdefabcdef' lastIndexOfString:'abc' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10206
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10207
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10208
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10209
lastIndexOfString:aString startingAt:startIndex ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10210
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
 10211
    "find the last occurrence of a substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10212
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10213
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10214
    ^ self lastIndexOfSubCollection:aString startingAt:startIndex ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10215
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10216
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10217
     'abcdefabcdef' lastIndexOfString:'abc'
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10218
     'abcdefabcdef' lastIndexOfString:'abc' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10219
     'abcdefabcdef' lastIndexOfString:'xxx' startingAt:6 ifAbsent:999
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10220
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10221
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
 10222
24145
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10223
occurrencesOfString:aSubString
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10224
    "count how often the argument aSubString is contained in the receiver"
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10225
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10226
    ^ self occurrencesOfString:aSubString caseSensitive:true
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10227
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10228
    "
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10229
     'aa' indexOfString:'aa' startingAt:1
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10230
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10231
     '' occurrencesOfString:'aa'
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10232
     'a' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10233
     'aa' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10234
     ' aa ' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10235
     ' aa a' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10236
     ' aaaa' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10237
     ' aa aa ' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10238
     ' aa bb ab ba aa ab' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10239
     ' aa bb cc aa bb cc aa bb ' occurrencesOfString:'aa'  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10240
    "
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10241
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10242
    "Created: / 25-05-2019 / 08:57:14 / Claus Gittinger"
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10243
!
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10244
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10245
occurrencesOfString:aSubString caseSensitive:caseSensitive
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10246
    "count how often the argument aSubString is contained in the receiver"
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10247
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10248
    |idx count|
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10249
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10250
    idx := 1.
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10251
    count := 0.
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10252
    [idx ~~ 0] whileTrue:[
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10253
        idx := self indexOfString:aSubString caseSensitive:caseSensitive startingAt:idx.
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10254
        idx ~~ 0 ifTrue:[
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10255
            count := count + 1.
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10256
            idx := idx + aSubString size
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10257
        ]
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10258
    ].
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10259
    ^ count
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10260
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10261
    "
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10262
     'aa' indexOfString:'aa' startingAt:1
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10263
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10264
     '' occurrencesOfString:'aA' caseSensitive:false
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10265
     'a' occurrencesOfString:'aA' caseSensitive:false 
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10266
     'aa' occurrencesOfString:'aA' caseSensitive:false  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10267
     ' aa ' occurrencesOfString:'aA' caseSensitive:false  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10268
     ' aa a' occurrencesOfString:'aA' caseSensitive:false  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10269
     ' aaaa' occurrencesOfString:'aA' caseSensitive:false  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10270
     ' aa aa ' occurrencesOfString:'aA' caseSensitive:false  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10271
     ' aa bb ab ba aa ab' occurrencesOfString:'aA' caseSensitive:false  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10272
     ' aa bb cc aa bb cc aa bb ' occurrencesOfString:'aA' caseSensitive:false  
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10273
    "
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10274
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10275
    "Created: / 25-05-2019 / 09:06:46 / Claus Gittinger"
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10276
!
60971523ce2f #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 24142
diff changeset
 10277
15055
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10278
rangeOfSubCollection:subString startingAt:start ifAbsent:exceptionValue caseSensitive:caseSensitive
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10279
    "find a substring. if found, return the start- and endIndex;
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10280
     if not found, return the value of exceptionValue."
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10281
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10282
    |i|
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10283
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10284
    i := self indexOfSubCollection:subString startingAt:start ifAbsent:0 caseSensitive:caseSensitive.
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10285
    i == 0 ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10286
        ^ exceptionValue value
15055
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10287
    ].
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10288
    ^ i to:(i + subString size - 1)
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10289
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10290
    "
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10291
     'hello world' findRangeOfString:'llo'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10292
     'hello world' findRangeOfString:'ole'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
 10293
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10294
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10295
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10296
!CharacterArray methodsFor:'testing'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10297
18893
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
 10298
isPlainString
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
 10299
    "return true, if the receiver is a plain string (without attributes);
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
 10300
     true is returned here - redefinition of Object>>isPlainString."
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
 10301
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
 10302
    ^ true
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
 10303
!
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
 10304
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10305
isString
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10306
    "return true, if the receiver is some kind of string;
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10307
     true is returned here - redefinition of Object>>isString."
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10308
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10309
    ^ true
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10310
!
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10311
21126
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10312
isUnary
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10313
    "Answer true if the receiver is a unary selector.
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10314
     That is not a check for being a valid selector, but instead relies on
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10315
     the selector being valid."
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10316
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10317
    ^ self isUnarySelector
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10318
!
df27a601562c #BUGFIX by stefan
Stefan Vogel <sv@exept.de>
parents: 21122
diff changeset
 10319
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10320
isUnarySelector
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10321
    "Answer true if the receiver contains only chars in an ANSI unary method selector, false otherwise."
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10322
17442
eccdc56fffa4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17371
diff changeset
 10323
    ^ (self first isLetterOrUnderline)
24254
0de83c555898 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24250
diff changeset
 10324
      and:[ self conform: [ :chr | chr isLetterOrDigitOrUnderline ]]
9845
361f4b5d7b19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9522
diff changeset
 10325
361f4b5d7b19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9522
diff changeset
 10326
    "Modified: / 13-09-2006 / 11:35:15 / cg"
24254
0de83c555898 #REFACTORING by cg
Claus Gittinger <cg@exept.de>
parents: 24250
diff changeset
 10327
    "Modified: / 05-06-2019 / 17:05:59 / Claus Gittinger"
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10328
!
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
 10329
14122
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10330
isUnicode16String
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10331
    ^ false
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10332
!
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10333
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10334
isUnicode32String
19939
4fd56994c47f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 19938
diff changeset
 10335
    "true if this is a 4-byte unicode string"
4fd56994c47f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 19938
diff changeset
 10336
14122
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10337
    ^ false
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10338
!
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10339
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10340
isUnicodeString
19938
33dfd505e161 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19920
diff changeset
 10341
    "true if this is a 2- or 4-byte unicode string
33dfd505e161 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19920
diff changeset
 10342
     (i.e. not a single byte string).
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
 10343
     Notice, that the name is misleading:
24939
4bf8460acd4d #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24886
diff changeset
 10344
     all strings use unicode encoding"
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
 10345
14122
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10346
    ^ false
24939
4bf8460acd4d #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24886
diff changeset
 10347
4bf8460acd4d #DOCUMENTATION by stefan
Stefan Vogel <sv@exept.de>
parents: 24886
diff changeset
 10348
    "Modified (comment): / 21-11-2019 / 18:25:19 / Stefan Vogel"
14122
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10349
!
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
 10350
14555
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
 10351
isWideString
19580
fdd3c217ff36 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 19497
diff changeset
 10352
    "true if I require more than one byte per character"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
 10353
15829
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
 10354
    |string|
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
 10355
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
 10356
    (string := self string) ~~ self ifTrue:[
20874
25e50f31e7e0 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20873
diff changeset
 10357
        ^ string isWideString.
15829
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
 10358
    ].
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
 10359
    ^ self contains:[:aCharacter | aCharacter codePoint > 16rFF].
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
 10360
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
 10361
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10362
!CharacterArray methodsFor:'tracing'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10363
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10364
traceInto:aRequestor level:level from:referrer
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10365
    "double dispatch into tracer, passing my type implicitely in the selector"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10366
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10367
    ^ aRequestor traceCharacterArray:self level:level from:referrer
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10368
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10369
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10370
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10371
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
 10372
!CharacterArray methodsFor:'visiting'!
8395
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
 10373
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
 10374
acceptVisitor:aVisitor with:aParameter
16733
3f4622673efc comment/format only
Claus Gittinger <cg@exept.de>
parents: 16697
diff changeset
 10375
    "dispatch for visitor pattern; send #visitString:with: to aVisitor"
8395
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
 10376
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
 10377
    ^ aVisitor visitString:self with:aParameter
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
 10378
! !
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
 10379
25217
a8b6bc875e30 #DOCUMENTATION by exept
Claus Gittinger <cg@exept.de>
parents: 25204
diff changeset
 10380
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
 10381
!CharacterArray class methodsFor:'documentation'!
629
2ceefe9b5a19 version at the end
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
 10382
2ceefe9b5a19 version at the end
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
 10383
version
18476
5a7a334213f7 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18464
diff changeset
 10384
    ^ '$Header$'
12058
80a7dee97d3c comments
Claus Gittinger <cg@exept.de>
parents: 11955
diff changeset
 10385
!
80a7dee97d3c comments
Claus Gittinger <cg@exept.de>
parents: 11955
diff changeset
 10386
80a7dee97d3c comments
Claus Gittinger <cg@exept.de>
parents: 11955
diff changeset
 10387
version_CVS
18476
5a7a334213f7 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18464
diff changeset
 10388
    ^ '$Header$'
629
2ceefe9b5a19 version at the end
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
 10389
! !
6809
72fee17c14b1 utf8 encoding fixed;
Claus Gittinger <cg@exept.de>
parents: 6743
diff changeset
 10390
14606
1aaaa6d79e54 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14592
diff changeset
 10391
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
 10392
CharacterArray initialize!