CharacterArray.st
author Claus Gittinger <cg@exept.de>
Sat, 01 Oct 2016 15:12:01 +0200
changeset 20490 f1c27208211f
parent 20484 5bc49b246ef2
child 20578 39641ba8d6e0
child 20667 c656db63d50f
permissions -rw-r--r--
#UI_ENHANCEMENT by cg class: MiniLogger class definition changed: #initialize #log:severity:facility:originator:attachment:on: fix: somewhere, WARNING is used. treat it like WARN. HACK: handle incoming messages from infoPrint and errorPrint, extract facility and severity. changed the layout to start with timestamp (looks much better)
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
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
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
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    19
	instanceVariableNames:''
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    20
	classVariableNames:'PreviousMatch DecoderTables EncoderTables DecodingFailedSignal
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    21
		EncodingFailedSignal UnicodeNormalizationMap
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    22
		UnicodeDenormalizationMap'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    23
	poolDictionaries:''
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
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
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
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
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
    74
    [author:]
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    75
        Claus Gittinger
1290
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
    76
15ba3221b89b documentation
Claus Gittinger <cg@exept.de>
parents: 1272
diff changeset
    77
    [see also:]
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    78
        String TwoByteString Unicode16String Uniode32String
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
    79
        StringCollection
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    80
"
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    81
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
    82
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    83
!CharacterArray class methodsFor:'initialization'!
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    84
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    85
initialize
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
    86
    DecodingFailedSignal isNil ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    87
	DecodingFailedSignal := DecodingError.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    88
	DecodingFailedSignal notifierString:'error during decode'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    89
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    90
	EncodingFailedSignal :=EncodingError.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
    91
	EncodingFailedSignal notifierString:'error during encode'.
5440
ba9207f592c9 only init once
Claus Gittinger <cg@exept.de>
parents: 5352
diff changeset
    92
    ]
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    93
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    94
    "
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    95
     CharacterArray initialize
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    96
    "
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    97
2833
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
    98
    "Modified: 3.8.1997 / 18:15:59 / cg"
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
    99
! !
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   100
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
   101
!CharacterArray class methodsFor:'instance creation'!
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   102
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   103
basicNew
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   104
    "return a new empty string"
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   105
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   106
    ^ self basicNew:0
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   107
!
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   108
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   109
fromBytes:aByteCollection
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   110
    "return an instance of the receiver class,
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   111
     taking untranslated bytes from the argument, aByteCollection
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   112
     in most-significant first order.
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   113
     Only useful, when reading twoByteStrings from external sources."
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   114
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   115
    ^ self fromBytes:aByteCollection MSB:true
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   116
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   117
    "
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   118
     Unicode16String fromBytes:#[16r02 16r20]
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   119
     Unicode16String fromBytes:#[16r02 16r20] MSB:true
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   120
     Unicode16String fromBytes:#[16r02 16r20] MSB:false
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   121
    "
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   122
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   123
    "Modified: 30.6.1997 / 20:08:37 / cg"
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   124
!
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   125
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   126
fromBytes:aByteCollection MSB:msb
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   127
    "return an instance of the receiver class,
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   128
     taking untranslated bytes from the argument, aByteCollection
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   129
     in the given byte order.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   130
     Only useful, when reading twoByteStrings from external sources."
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
   131
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   132
    |mySize nBytes newString dstIdx|
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   133
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   134
    self assert:(self ~~ CharacterArray). "/ only works for concrete subclasses.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   135
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   136
    "/ the following is a quite inefficient implementation.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
   137
    "/ consider rewriting, if heavily used.
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   138
    nBytes := aByteCollection size.
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   139
    mySize := self basicNew bitsPerCharacter.
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   140
    mySize == 16 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   141
	newString := self uninitializedNew:(nBytes // 2).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   142
	dstIdx := 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   143
	msb ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   144
	    aByteCollection pairWiseDo:[:hi :lo |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   145
		newString at:dstIdx put:(Character value:(hi bitShift:8)+lo).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   146
		dstIdx := dstIdx + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   147
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   148
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   149
	    aByteCollection pairWiseDo:[:lo :hi |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   150
		newString at:dstIdx put:(Character value:(hi bitShift:8)+lo).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   151
		dstIdx := dstIdx + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   152
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   153
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   154
	^ newString.
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   155
    ].
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   156
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   157
    ^ (self uninitializedNew:nBytes) replaceFrom:1 with:aByteCollection
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   158
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   159
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
   160
     Unicode16String fromBytes:#[16r02 16r20]
2734
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   161
    "
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   162
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   163
    "Modified: 30.6.1997 / 20:08:37 / cg"
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   164
!
ab167dc4c5db checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2733
diff changeset
   165
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   166
fromString:aString
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   167
    "return a copy of the argument, aString"
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   168
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   169
    |sz|
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   170
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   171
    sz := aString size.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   172
    ^ (self uninitializedNew:sz) replaceFrom:1 to:sz with:aString startingAt:1
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   173
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
   174
    "
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   175
	Unicode16String fromString:'hello'
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   176
    "
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   177
!
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   178
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   179
fromStringCollection:aCollectionOfStrings
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   180
    "return new string formed by concatenating a copy of the argument, aString"
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   181
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   182
    ^ self fromStringCollection:aCollectionOfStrings separatedBy:''
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   183
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   184
    "
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   185
     String fromStringCollection:#('hello' 'world' 'how' 'about' 'this')
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   186
    "
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   187
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   188
    "Created: 20.11.1995 / 15:26:59 / cg"
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   189
!
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   190
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   191
fromStringCollection:aCollectionOfStrings separatedBy:aSeparatorString
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   192
    "return new string formed by concatenating a copy of the argument, aString"
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   193
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   194
    |stream|
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   195
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   196
    aCollectionOfStrings do:[:eachString |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   197
	stream isNil ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   198
	    stream := self writeStreamClass with:eachString.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   199
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   200
	    stream
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   201
		nextPutAll:aSeparatorString;
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   202
		nextPutAll:eachString.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   203
	].
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   204
    ].
17700
32c288b4487f class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17644
diff changeset
   205
    stream isNil ifTrue:[^ ''].
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   206
    ^ stream contents
581
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') separatedBy:' '
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   210
     String fromStringCollection:#('hello' 'world' 'how' 'about' 'this') separatedBy:'Ƞ'
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
   211
     Text fromStringCollection:{'hello'. 'world'. 'how' allBold. 'about'. 'this'. 'äöü'} separatedBy:'Ƞ'
581
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   212
    "
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   213
8a991a4cb738 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 528
diff changeset
   214
    "Created: 20.11.1995 / 15:32:17 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   215
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   216
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   217
fromUTF8Bytes:aByteCollection
5758
30e0cc2213ac utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5757
diff changeset
   218
    "return a new string which represents the characters as decoded
30e0cc2213ac utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5757
diff changeset
   219
     from the utf8 encoded bytes, aByteCollection.
30e0cc2213ac utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5757
diff changeset
   220
     Returns either a normal String, or a TwoByteString instance.
6810
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   221
     Only useful, when reading twoByteStrings from external sources.
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   222
     This only handles up-to 16bit characters"
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   223
7876
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   224
    ^ self decodeFromUTF8:aByteCollection.
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   225
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   226
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   227
     CharacterArray fromUTF8Bytes:#[ 16r41 16r42 ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   228
     CharacterArray fromUTF8Bytes:#[ 16rC1 16r02 ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   229
     CharacterArray fromUTF8Bytes:#[ 16rE0 16r81 16r02 ]
6810
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   230
     CharacterArray fromUTF8Bytes:#[ 16rEF 16rBF 16rBF ]
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   231
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   232
   rfc2279 examples:
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   233
     CharacterArray fromUTF8Bytes:#[ 16r41 16rE2 16r89 16rA2 16rCE 16r91 16r2E ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   234
     CharacterArray fromUTF8Bytes:#[ 16rED 16r95 16r9C 16rEA 16rB5 16rAD 16rEC 16r96 16rB4 ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   235
     CharacterArray fromUTF8Bytes:#[ 16rE6 16r97 16rA5 16rE6 16r9C 16rAC 16rE8 16rAA 16r9E ]
6810
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   236
a055eb19e9d3 caych invalid encodings
Claus Gittinger <cg@exept.de>
parents: 6809
diff changeset
   237
   invalid:
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   238
     CharacterArray fromUTF8Bytes:#[ 16rC0 16r80 ]
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   239
     CharacterArray fromUTF8Bytes:#[ 16rE0 16r80 16r80 ]
5757
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   240
    "
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   241
!
2511dcddce73 utf8 string decoding
Claus Gittinger <cg@exept.de>
parents: 5741
diff changeset
   242
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   243
new
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   244
    "return a new empty string"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   245
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   246
    ^ self basicNew:0
9425
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   247
!
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   248
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   249
readSmalltalkStringFrom:aStreamOrString onError:exceptionBlock
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   250
    "read & return the next String from the (character-)stream aStream;
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   251
     skipping all whitespace first; return the value of exceptionBlock,
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   252
     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
   253
     stream must be one as stored via storeOn: or storeString."
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   254
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   255
    |str collected char|
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   256
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   257
    str := aStreamOrString readStream.
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   258
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   259
    "skip whiteSpace"
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   260
    str skipSeparators.
11320
0cf84c372ccf Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11292
diff changeset
   261
14452
ef3591302afa changed: #readSmalltalkStringFrom:onError:
Stefan Vogel <sv@exept.de>
parents: 14451
diff changeset
   262
    (str peekOrNil == $') ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   263
	str next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   264
	collected := self writeStream.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   265
	[str atEnd] whileFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   266
	    char := str next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   267
	    char == $' ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   268
		"/ look for another quote
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   269
		str peekOrNil ~~ $' ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   270
		    "end of string reached"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   271
		    ^ collected contents.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   272
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   273
		"eat doubled quote"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   274
		str next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   275
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   276
	    ((char ~~ Character return) or:[str peekOrNil ~~ Character lf]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   277
		"compress CRLF to LF, but keep a single CR"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   278
		collected nextPut:char.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   279
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   280
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   281
	"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
   282
    ].
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   283
    ^ exceptionBlock value
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   284
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   285
    "
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   286
     String readFrom:('''hello world''' readStream)
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   287
     String readFrom:('''hello '''' world''' readStream)
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   288
     String readFrom:('1 ''hello'' ' readStream)
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   289
     String readFrom:('1 ''hello'' ' readStream) onError:['foobar']
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   290
    "
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   291
e5a6bf5ad36e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9403
diff changeset
   292
    "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
   293
    "Modified: / 06-10-2006 / 14:05:32 / cg"
11243
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   294
!
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   295
13201
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   296
writeStreamClass
17213
1031d5018042 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17205
diff changeset
   297
    "the class used by writeStream.
1031d5018042 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17205
diff changeset
   298
     Here, we return CharacterWriteStream, which automatically changes
1031d5018042 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17205
diff changeset
   299
     the underlying collection to a multiByte string (i.e. UnicodeString).
1031d5018042 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17205
diff changeset
   300
     So you can stream wide characters into it."
13201
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   301
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   302
    ^ CharacterWriteStream
11243
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   303
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   304
    "
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   305
     String writeStream
4bf099f5bb56 CharacterArray class>>#writeStream - answer a CharacterWriteStrem
Stefan Vogel <sv@exept.de>
parents: 11229
diff changeset
   306
    "
13201
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   307
848ccc41fc90 added: #writeStreamClass
Claus Gittinger <cg@exept.de>
parents: 13170
diff changeset
   308
    "Created: / 09-01-2011 / 10:37:57 / cg"
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   309
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   310
9265
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   311
!CharacterArray class methodsFor:'Compatibility-VW'!
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   312
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   313
fromIntegerArray: anArray
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   314
    "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
   315
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   316
    | new |
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   317
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   318
    new := self new: anArray size.
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   319
    1 to: anArray size do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   320
	new at: index put: (anArray at: index) asCharacter
9265
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   321
    ].
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   322
    ^new
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   323
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   324
    "
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   325
     String fromIntegerArray: #[8 127]
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   326
    "
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   327
! !
6221befad9c5 compatibility
Claus Gittinger <cg@exept.de>
parents: 9230
diff changeset
   328
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   329
!CharacterArray class methodsFor:'Signal constants'!
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   330
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   331
decodingFailedSignal
2833
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   332
    "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
   333
     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
   334
     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
   335
     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
   336
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   337
    ^ DecodingFailedSignal
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   338
2833
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   339
    "Created: 28.6.1997 / 20:09:55 / cg"
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   340
    "Modified: 3.8.1997 / 18:16:47 / cg"
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   341
!
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   342
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   343
encodingFailedSignal
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   344
    "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
   345
     due to invalid characters contained in the source."
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   346
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   347
    ^ EncodingFailedSignal
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   348
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   349
    "Modified: 28.6.1997 / 20:09:35 / cg"
2833
f8600b7cb86d provide access to signals
Claus Gittinger <cg@exept.de>
parents: 2813
diff changeset
   350
    "Created: 3.8.1997 / 18:16:40 / cg"
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   351
! !
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
   352
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
   353
!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
   354
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   355
lowSpaceCleanup
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   356
    "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
   357
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   358
    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
   359
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   360
    "
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   361
     CharacterArray lowSpaceCleanup
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   362
    "
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   363
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   364
    "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
   365
    "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
   366
! !
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
   367
7421
4e6c6edb90d9 category rename
Claus Gittinger <cg@exept.de>
parents: 7349
diff changeset
   368
!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
   369
7876
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   370
decodeFromUTF8:aStringOrByteCollection
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   371
    "given a string in UTF8 encoding,
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   372
     return a new string containing the same characters, in Unicode encoding.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   373
     Returns either a normal String, a Unicode16String or a Unicode32String instance.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   374
     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
   375
     other systems 
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   376
     (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
   377
     This only handles up-to 30bit characters."
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   378
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   379
    |sz anyAbove7BitAscii nBitsRequired
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   380
     ascii "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   381
     byte  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   382
     lastIdx  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   383
     srcIdx  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   384
     idx  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   385
     nFollowBytes  "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   386
     minValue "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   387
     newString|
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   388
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   389
    "/ fast track, also avoid creation of new strings if aStringOrByteCollection is already a 7-bit string
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   390
    aStringOrByteCollection containsNon7BitAscii ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   391
        ^ aStringOrByteCollection asSingleByteString
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   392
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   393
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   394
    nBitsRequired := 8.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   395
    anyAbove7BitAscii := false.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   396
    sz := 0.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   397
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   398
    lastIdx := aStringOrByteCollection size.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   399
    srcIdx := 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   400
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   401
    "first determine the string size and max element size.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   402
     Check for UTF-8 confomance on the fly."
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   403
    [srcIdx <= lastIdx] whileTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   404
        byte := ascii := aStringOrByteCollection byteAt:srcIdx. 
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   405
        srcIdx := srcIdx + 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   406
        (byte bitAnd:16r80) ~~ 0 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   407
            anyAbove7BitAscii := true.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   408
            (byte bitAnd:2r11100000) == 2r11000000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   409
                "/ 80 .. 7FF
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   410
                ascii := byte bitAnd:2r00011111.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   411
                nFollowBytes := 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   412
                minValue := 16r80.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   413
            ] ifFalse:[(byte bitAnd:2r11110000) == 2r11100000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   414
                "/ 800 .. FFFF
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   415
                ascii := byte bitAnd:2r00001111.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   416
                nFollowBytes := 2.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   417
                minValue := 16r800.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   418
            ] ifFalse:[(byte bitAnd:2r11111000) == 2r11110000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   419
                "/ 10000 .. 1FFFFF
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   420
                ascii := byte bitAnd:2r00000111.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   421
                nFollowBytes := 3.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   422
                minValue := 16r10000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   423
            ] ifFalse:[(byte bitAnd:2r11111100) == 2r11111000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   424
                "/ 200000 .. 3FFFFFF
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   425
                ascii := byte bitAnd:2r00000011.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   426
                nFollowBytes := 4.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   427
                minValue := 16r200000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   428
            ] ifFalse:[(byte bitAnd:2r11111110) == 2r11111100 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   429
                "/ 4000000 .. 7FFFFFFF
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   430
                ascii := byte bitAnd:2r00000001.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   431
                ascii ~~ 0 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   432
                    "/ ST/X can only represent 30 bit unicode characters.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   433
                    "/ but the max unicode character is defined as 16r10 FFFF anyway
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   434
                    ^ DecodingError newException
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   435
                           defaultValue:aStringOrByteCollection;
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   436
                           raiseRequestWith:aStringOrByteCollection errorString:'unicode character out of range'.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   437
                ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   438
                nFollowBytes := 5.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   439
                minValue := 16r4000000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   440
            ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   441
                ^ DecodingError newException
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   442
                       defaultValue:aStringOrByteCollection;
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   443
                       raiseRequestWith:aStringOrByteCollection errorString:'invalid utf8 encoding'.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   444
            ]]]]].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   445
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   446
            nFollowBytes timesRepeat:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   447
                byte := aStringOrByteCollection byteAt:srcIdx.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   448
                srcIdx := srcIdx + 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   449
                (byte bitAnd:2r11000000) ~~ 2r10000000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   450
                    ^ DecodingError newException
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   451
                           defaultValue:aStringOrByteCollection;
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   452
                           raiseRequestWith:aStringOrByteCollection errorString:'illegal followbyte'.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   453
                ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   454
                ascii := (ascii bitShift:6) bitOr:(byte bitAnd:2r00111111). 
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   455
            ]. 
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   456
            ascii > 16rFFFF ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   457
                nBitsRequired < 32 ifTrue:[nBitsRequired := 32].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   458
            ] ifFalse:[ascii > 16rFF ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   459
                nBitsRequired < 16 ifTrue:[nBitsRequired := 16].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   460
            ]].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   461
            ascii < minValue ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   462
                "encoding a value in a longer utf8-sequence than required is not allowed
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   463
                 and imposes a security risk"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   464
                ^ DecodingError newException
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   465
                       defaultValue:aStringOrByteCollection;
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   466
                       raiseRequestWith:aStringOrByteCollection errorString:'overlong utf8 sequence'.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   467
            ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   468
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   469
        sz := sz + 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   470
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   471
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   472
    nBitsRequired == 8 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   473
        anyAbove7BitAscii ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   474
            "/ can return the original string
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   475
            ^ aStringOrByteCollection asSingleByteString.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   476
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   477
        newString := String uninitializedNew:sz
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   478
    ] ifFalse:[nBitsRequired <= 16 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   479
        newString := Unicode16String new:sz
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   480
    ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   481
        newString := Unicode32String new:sz
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   482
    ]].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   483
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   484
    idx := srcIdx := 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   485
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   486
    "now fill the string"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   487
    [srcIdx <= lastIdx] whileTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   488
        byte := ascii := aStringOrByteCollection byteAt:srcIdx.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   489
        srcIdx := srcIdx + 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   490
        (byte bitAnd:2r10000000) ~~ 0 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   491
            (byte bitAnd:2r11100000) == 2r11000000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   492
                ascii := byte bitAnd:2r00011111.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   493
                nFollowBytes := 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   494
            ] ifFalse:[(byte bitAnd:2r11110000) == 2r11100000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   495
                ascii := byte bitAnd:2r00001111.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   496
                nFollowBytes := 2.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   497
            ] ifFalse:[(byte bitAnd:2r11111000) == 2r11110000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   498
                ascii := byte bitAnd:2r00000111.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   499
                nFollowBytes := 3.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   500
            ] ifFalse:[(byte bitAnd:2r11111100) == 2r11111000 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   501
                "5 byte sequences do not result in valid unicode"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   502
                ascii := byte bitAnd:2r00000011.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   503
                nFollowBytes := 4.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   504
            ] ifFalse:[(byte bitAnd:2r11111110) == 2r11111100 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   505
                "6 byte sequences do not result in valid unicode"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   506
                ascii := byte bitAnd:2r00000001.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   507
                nFollowBytes := 5.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   508
            ]]]]].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   509
            nFollowBytes timesRepeat:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   510
                byte := aStringOrByteCollection byteAt:srcIdx.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   511
                srcIdx := srcIdx + 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   512
                ascii := (ascii bitShift:6) bitOr:(byte bitAnd:2r00111111). 
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
        newString at:idx put:(Character value:ascii).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   516
        idx := idx + 1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   517
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   518
    ^ newString
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   519
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   520
    "
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   521
     CharacterArray decodeFromUTF8:#[ 16r41 16r42 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   522
     CharacterArray decodeFromUTF8:#[ 16rC6 16r8F ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   523
     CharacterArray decodeFromUTF8:#[ 16rE0 16r81 16r02 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   524
     CharacterArray decodeFromUTF8:#[ 16rEF 16rBF 16rBF ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   525
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   526
   rfc2279 (deprecated) examples:
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   527
     CharacterArray decodeFromUTF8:#[ 16r41 16rE2 16r89 16rA2 16rCE 16r91 16r2E ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   528
     CharacterArray decodeFromUTF8:#[ 16rED 16r95 16r9C 16rEA 16rB5 16rAD 16rEC 16r96 16rB4 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   529
     CharacterArray decodeFromUTF8:#[ 16rE6 16r97 16rA5 16rE6 16r9C 16rAC 16rE8 16rAA 16r9E ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   530
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   531
   invalid:
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   532
     CharacterArray decodeFromUTF8:#[ 16rC0 16r80 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   533
     CharacterArray decodeFromUTF8:#[ 16rE0 16r80 16r80 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   534
    "
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   535
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   536
    "
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   537
     CharacterArray decodeFromUTF8:#[ 16r41 16r42 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   538
     CharacterArray decodeFromUTF8:#[ 16rC1 16r02 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   539
     CharacterArray decodeFromUTF8:#[ 16rE0 16r81 16r02 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   540
     CharacterArray decodeFromUTF8:#[ 16rEF 16rBF 16rBF ]
7876
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   541
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   542
   rfc2279 examples:
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   543
     CharacterArray decodeFromUTF8:#[ 16r41 16rE2 16r89 16rA2 16rCE 16r91 16r2E ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   544
     CharacterArray decodeFromUTF8:#[ 16rED 16r95 16r9C 16rEA 16rB5 16rAD 16rEC 16r96 16rB4 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   545
     CharacterArray decodeFromUTF8:#[ 16rE6 16r97 16rA5 16rE6 16r9C 16rAC 16rE8 16rAA 16r9E ]
7876
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   546
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   547
   invalid:
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   548
     CharacterArray decodeFromUTF8:#[ 16rC0 16r80 ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
   549
     CharacterArray decodeFromUTF8:#[ 16rE0 16r80 16r80 ]
7876
56ab739f1843 +decodeUTF8
Claus Gittinger <cg@exept.de>
parents: 7797
diff changeset
   550
    "
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   551
!
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   552
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   553
setupNormalizationMaps
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   554
    "returns a 2-stage map from ch2 -> ch1 -> mappedChar
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   555
     for unicode normalization (i.e. for making combining chars regular ones)"
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   556
     
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   557
    |def|
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   558
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   559
    UnicodeNormalizationMap := Dictionary new.
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   560
    UnicodeDenormalizationMap := Dictionary new.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   561
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   562
    def := [:combiner :chars :mappedChars |
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   563
               |d|
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   564
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   565
               d := UnicodeNormalizationMap at:combiner ifAbsentPut:[Dictionary new].
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   566
               chars with:mappedChars do:[:ch1 :mappedChar | 
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   567
                    d at:ch1 put:mappedChar.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   568
                    UnicodeDenormalizationMap at:mappedChar put:(Unicode16String with:ch1 with:combiner).
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
   569
               ].
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   570
           ].        
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   571
    def value:(Character codePoint:16r0300) "grave"         value:'AEIOUaeiouWw' value:'ÀÈÌÒÙàèìòùẀẁ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   572
    def value:(Character codePoint:16r0301) "acute"         value:'AEIOUYaeiouyÇçKkMmPpWw' value:'ÁÉÍÓÚÝáéíóúýḈḉḰḱḾḿṔṕẂẃ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   573
    def value:(Character codePoint:16r0302) "circumflex"    value:'AEIOUaeiouZz' value:'ÂÊÎÔÛâêîôûẐẑ'.
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   574
    def value:(Character codePoint:16r0303) "tilde"         value:'AONaon' value:'ÃÕÑãõñ'.
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   575
    def value:(Character codePoint:16r0307) "dot over"      value:'BbDdFfHhMmNnPpRrSsTtWwXxYyṢṣ' value:'ḂḃḊḋḞḟḢḣṀṁṄṅṖṗṘṙṠṡṪṫẆẇẊẋẎẏṨṩ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   576
    def value:(Character codePoint:16r0308) "diaresis"      value:'AEIOUaeiouyHhWwXxt' value:'ÄËÏÖÜäëïöüÿḦḧẄẅẌẍẗ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   577
    def value:(Character codePoint:16r030A) "ring"          value:'Aawy' value:'Ååẘẙ'.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   578
    def value:(Character codePoint:16r0323) "dot under"     value:'AaBbDdEeIiHhKkLlMmNnOoRrSsTtUuVvWwZzṠṡ' value:'ẠạḄḅḌḍẸẹỊịḤḥḲḳḶḷṂṃṆṇỌọṚṛṢṣṬṭỤụṾṿẈẉẒẓṨṩ'.
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   579
    def value:(Character codePoint:16r0327) "cedilla"       value:'Cc' value:'Çç'.
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   580
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   581
    "
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
   582
     self setupNormalizationMaps
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   583
    "
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   584
!
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   585
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   586
unicodeDenormalizationMap
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   587
    "returns a 2-stage map from ch2 -> ch1 -> mappedChar
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   588
     for unicode normalization (i.e. for making combining chars regular ones)"
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   589
     
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   590
    UnicodeDenormalizationMap isNil ifTrue:[
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   591
        self setupNormalizationMaps
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   592
    ].
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   593
    ^ UnicodeDenormalizationMap
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   594
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   595
    "
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   596
     self unicodeDenormalizationMap
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   597
    "
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   598
!
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   599
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   600
unicodeNormalizationMap
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   601
    "returns a 2-stage map from ch2 -> ch1 -> mappedChar
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   602
     for unicode normalization (i.e. for making combining chars regular ones)"
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   603
     
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   604
    UnicodeNormalizationMap isNil ifTrue:[
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
   605
        self setupNormalizationMaps
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   606
    ].
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   607
    ^ UnicodeNormalizationMap
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   608
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   609
    "
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   610
     self unicodeNormalizationMap
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
   611
    "
443
Claus Gittinger <cg@exept.de>
parents: 428
diff changeset
   612
! !
Claus Gittinger <cg@exept.de>
parents: 428
diff changeset
   613
20484
5bc49b246ef2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20480
diff changeset
   614
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
   615
!CharacterArray class methodsFor:'pattern matching'!
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
   616
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   617
matchEscapeCharacter
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   618
    "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
   619
     (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
   620
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   621
    ^ $\
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   622
!
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   623
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   624
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
   625
    "helper for match; return true if the characters from start to stop in
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   626
     aString are matching the scan in matchScan from matchStart to matchStop.
328
claus
parents: 327
diff changeset
   627
     The matchScan is as created by asMatchScanArray.
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   628
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   629
     This algorithm is not at all the most efficient;
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   630
     for heavy duty pattern matching, an interface (primitive) to the regex
328
claus
parents: 327
diff changeset
   631
     pattern matching package should be added."
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   632
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   633
    |matchEntry
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   634
     mStart "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   635
     mStop  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   636
     sStart "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   637
     sStop  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   638
     mSize  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   639
     sSize  "{ Class: SmallInteger }"
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   640
     index  "{ Class: SmallInteger }"
2561
205ee33decf9 removed unused var
Claus Gittinger <cg@exept.de>
parents: 2554
diff changeset
   641
     quickCheck matchLast nextMatchEntry
986
c3a9f590146d removed unused locals
Claus Gittinger <cg@exept.de>
parents: 915
diff changeset
   642
     checkChar included|
327
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   643
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   644
    mStart := matchStart.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   645
    mStop := matchStop.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   646
    sStart := start.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   647
    sStop := stop.
183f094cfd72 last with old match code
claus
parents: 326
diff changeset
   648
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
   649
    [
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   650
"/ Transcript showCR:('match: ''' , (aString copyFrom:sStart to:sStop) ,
3537
916534e86f0c fixed match
Claus Gittinger <cg@exept.de>
parents: 3527
diff changeset
   651
"/                    ''' against:' , (matchScanArray copyFrom:mStart to:mStop) printString).
916534e86f0c fixed match
Claus Gittinger <cg@exept.de>
parents: 3527
diff changeset
   652
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   653
	mSize := mStop - mStart + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   654
	sSize := sStop - sStart + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   655
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   656
	"empty strings match"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   657
	(mSize == 0) ifTrue:[^ (sSize == 0)].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   658
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   659
	matchEntry := matchScanArray at:mStart.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   660
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   661
	"/ the most common case first:
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   662
	(sSize ~~ 0
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   663
	and:[(checkChar := (aString at:sStart)) = matchEntry]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   664
	    "advance by one and continue"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   665
	    mStart := mStart + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   666
	    sStart := sStart + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   667
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   668
	    (matchEntry == #any) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   669
		"restString empty -> no match"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   670
		(sSize == 0) ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   671
		"# matches single character"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   672
		((sSize == 1) and:[mSize == 1]) ifTrue:[^ true].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   673
		"advance by one and continue"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   674
		mStart := mStart + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   675
		sStart := sStart + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   676
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   677
		(matchEntry == #anyString) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   678
		    "* alone matches anything"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   679
		    (mSize == 1) ifTrue:[^ true].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   680
		    "restString empty & matchString not empty -> no match"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   681
		    (sSize == 0) ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   682
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   683
		    "
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   684
		     try to avoid some of the recursion by checking last
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   685
		     character and continue with shortened strings if possible
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   686
		    "
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   687
		    quickCheck := false.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   688
		    (mStop >= mStart) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   689
			matchLast := matchScanArray at:mStop.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   690
			(matchLast ~~ #anyString) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   691
			    (matchLast == #any) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   692
				quickCheck := true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   693
			    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   694
				matchLast == (aString at:sStop) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   695
				    quickCheck := true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   696
				] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   697
				    matchLast isString ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   698
					quickCheck := matchLast includes:(aString at:sStop)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   699
				    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   700
				]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   701
			    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   702
			]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   703
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   704
		    quickCheck ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   705
			"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   706
			 quickCheck ok, advance from the right
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   707
			"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   708
			mStop := mStop - 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   709
			sStop := sStop - 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   710
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   711
			"/ no quick check;
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   712
			"/ look for the next character(s)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   713
			"/ and try matching there
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   714
			"/ (to avoid recursion)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   715
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   716
			mStart < mStop ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   717
			    nextMatchEntry := matchScanArray at:mStart+1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   718
			    nextMatchEntry isCharacter ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   719
				sStart <= sStop ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   720
				    [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   721
					caseSensitive ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   722
					    index := aString indexOf:nextMatchEntry startingAt:sStart
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   723
					] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   724
					    index := aString findFirst:[:c | c asLowercase = nextMatchEntry asLowercase]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   725
							     startingAt:sStart.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   726
					].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   727
					(index == 0 or:[index > sStop]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   728
					    ^ false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   729
					].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   730
					(self matchScan:matchScanArray
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   731
					      from:(mStart + 1)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   732
					      to:mStop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   733
					      with:aString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   734
					      from:index
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   735
					      to:sStop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   736
					      caseSensitive:caseSensitive
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   737
					) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   738
					    ^ true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   739
					].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   740
					sStart := index + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   741
				    ] loop.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   742
				]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   743
			    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   744
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   745
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   746
			"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   747
			 no quick check possible;
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   748
			 loop over all possible substrings
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   749
			"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   750
			index := sStart.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   751
			[index <= sStop] whileTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   752
			    (self matchScan:matchScanArray
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   753
				  from:(mStart + 1)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   754
				  to:mStop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   755
				  with:aString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   756
				  from:index
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   757
				  to:sStop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   758
				  caseSensitive:caseSensitive
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   759
			    ) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   760
				^ true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   761
			    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   762
			    index := index + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   763
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   764
			^ false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   765
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   766
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   767
		    (matchEntry isString) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   768
			"testString empty -> no match"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   769
			(sSize == 0) ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   770
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   771
			included := false.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   772
			"/ checkChar := aString at:sStart.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   773
			included := matchEntry includes:checkChar.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   774
			included ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   775
			    caseSensitive ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   776
				checkChar isUppercase ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   777
				    included := matchEntry includes:checkChar asLowercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   778
				] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   779
				    included := matchEntry includes:checkChar asUppercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   780
				]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   781
			    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   782
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   783
			mStart := mStart + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   784
			mSize := mSize - 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   785
			included ifFalse:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   786
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   787
			((sSize == 1) and:[mSize == 0]) ifTrue:[^ true].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   788
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   789
			"/ must be single character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   790
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   791
			"testString empty ?"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   792
			(sSize == 0) ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   793
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   794
			"first characters equal ?"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   795
			"/ checkChar := aString at:sStart.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   796
			caseSensitive ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   797
			(checkChar asUppercase ~= matchEntry asUppercase) ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   798
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   799
			"advance and continue"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   800
			mStart := mStart + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   801
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   802
		    "cut off 1st char and continue"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   803
		    sStart := sStart + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   804
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   805
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   806
	]
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
   807
    ] loop.
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   808
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   809
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   810
     |scanArray s|
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   811
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   812
     scanArray := self matchScanArrayFrom:'*hello'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   813
     s := 'foo bar hello world'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   814
     CharacterArray
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   815
	 matchScan:scanArray
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   816
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   817
	 to:scanArray size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   818
	 with:s
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   819
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   820
	 to:s size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   821
	 caseSensitive:true
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   822
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   823
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   824
     |scanArray s|
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   825
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   826
     scanArray := self matchScanArrayFrom:'*hello*'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   827
     s := 'foo bar hello world'.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   828
     CharacterArray
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   829
	 matchScan:scanArray
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   830
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   831
	 to:scanArray size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   832
	 with:s
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   833
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   834
	 to:s size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   835
	 caseSensitive:true
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   836
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   837
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   838
    "Modified: / 24-07-2011 / 07:17:03 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   839
    "Modified (comment): / 24-07-2011 / 08:55:14 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   840
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   841
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   842
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
   843
    <resource: #obsolete>
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   844
    "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
   845
     aString are matching the scan in matchScan from matchStart to matchStop.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   846
     The matchScan is as created by asMatchScanArray.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   847
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   848
     This algorithm is not at all the most efficient;
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   849
     for heavy duty pattern matching, an interface (primitive) to the regex
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   850
     pattern matching package should be added."
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   851
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   852
    ^ self
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   853
	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
   854
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   855
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   856
     |scanArray s|
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   857
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   858
     scanArray := self matchScanArrayFrom:'*hello'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   859
     s := 'foo bar hello world'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   860
     CharacterArray
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   861
	 matchScan:scanArray
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   862
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   863
	 to:scanArray size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   864
	 with:s
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   865
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   866
	 to:s size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   867
	 ignoreCase:false
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   868
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   869
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   870
     |scanArray s|
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   871
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   872
     scanArray := self matchScanArrayFrom:'*hello*'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   873
     s := 'foo bar hello world'.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
   874
     CharacterArray
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   875
	 matchScan:scanArray
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   876
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   877
	 to:scanArray size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   878
	 with:s
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   879
	 from:1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   880
	 to:s size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   881
	 ignoreCase:false
13520
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   882
    "
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   883
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   884
    "Modified: / 24-07-2011 / 07:17:03 / cg"
52597f7f6ff8 changed:
Claus Gittinger <cg@exept.de>
parents: 13511
diff changeset
   885
    "Modified (comment): / 24-07-2011 / 08:55:14 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   886
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   887
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   888
matchScanArrayFrom:aString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   889
    "scan a pattern string and decompose it into a scanArray.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   890
     This is processed faster (especially with character ranges), and
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   891
     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
   892
9282
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   893
    ^ self matchScanArrayFrom:aString escapeCharacter:(self matchEscapeCharacter)
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   894
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   895
    "
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   896
     String matchScanArrayFrom:'*ute*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   897
     String matchScanArrayFrom:'**ute**'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   898
     String matchScanArrayFrom:'*uter'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   899
     String matchScanArrayFrom:'\*uter'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   900
     String matchScanArrayFrom:'[cC]#mpute[rR]'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   901
     String matchScanArrayFrom:'[abcd]*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   902
     String matchScanArrayFrom:'[a-k]*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   903
     String matchScanArrayFrom:'*some*compl*ern*'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   904
     String matchScanArrayFrom:'[a-'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   905
     String matchScanArrayFrom:'[a-zA-Z]'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   906
     String matchScanArrayFrom:'[a-z01234A-Z]'
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   907
    "
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   908
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   909
    "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
   910
!
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   911
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   912
matchScanArrayFrom:aString escapeCharacter:escape
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   913
    "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
   914
     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
   915
     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
   916
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   917
    |coll
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   918
     idx "{ Class: SmallInteger }"
9282
f6d9d4129919 allow for different escape cahracter in matches
Claus Gittinger <cg@exept.de>
parents: 9275
diff changeset
   919
     end c1 c2 matchSet previous|
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
   920
5487
cb4c5ae75c63 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5469
diff changeset
   921
    previous := nil.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   922
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   923
    coll := OrderedCollection new.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   924
    idx := 1. end := aString size.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   925
    [idx <= end] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   926
	|char this|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   927
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   928
	char := aString at:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   929
	char == $* ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   930
	    previous ~~ #anyString ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   931
		this := #anyString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   932
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   933
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   934
	    char == $# ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   935
		previous ~~ #anyString ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   936
		    this := #any
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   937
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   938
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   939
		char == $[ ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   940
		    matchSet := IdentitySet new.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   941
		    idx := idx + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   942
		    idx > end ifTrue:[^ nil].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   943
		    char := aString at:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   944
		    c1 := nil.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   945
		    [char ~~ $]] whileTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   946
			((char == $-) and:[c1 notNil]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   947
			    idx := idx + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   948
			    idx > end ifTrue:[^ nil].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   949
			    c2 := aString at:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   950
			    c1 to:c2 do:[:c | matchSet add:c].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   951
			    c1 := nil.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   952
			    idx := idx + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   953
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   954
			    (char ~~ $]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   955
				matchSet add:char.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   956
				c1 := char.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   957
				idx := idx + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   958
			    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   959
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   960
			idx > end ifTrue:[^ nil].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   961
			char := aString at:idx
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   962
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   963
		    this := matchSet asString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   964
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   965
		    char == escape ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   966
			idx := idx + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   967
			idx > end ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   968
			    "/ mhmh - what should we do here ?
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   969
			    this := char
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   970
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   971
			    this := aString at:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   972
			]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   973
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   974
			this := char
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   975
		    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   976
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   977
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   978
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   979
	this notNil ifTrue:[coll add:this. previous := this].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
   980
	idx := idx + 1
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   981
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   982
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   983
    ^ coll asArray
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   984
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   985
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   986
     String matchScanArrayFrom:'*ute*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   987
     String matchScanArrayFrom:'**ute**'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   988
     String matchScanArrayFrom:'*uter'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   989
     String matchScanArrayFrom:'\*uter'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   990
     String matchScanArrayFrom:'[cC]#mpute[rR]'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   991
     String matchScanArrayFrom:'[abcd]*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   992
     String matchScanArrayFrom:'[a-k]*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   993
     String matchScanArrayFrom:'*some*compl*ern*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   994
     String matchScanArrayFrom:'[a-'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   995
     String matchScanArrayFrom:'[a-zA-Z]'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
   996
     String matchScanArrayFrom:'[a-z01234A-Z]'
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
   997
    "
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   998
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
   999
    "Modified: 2.4.1997 / 16:20:29 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1000
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1001
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1002
!CharacterArray class methodsFor:'queries'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1003
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1004
isAbstract
11229
4fa83d5e806d comment
Claus Gittinger <cg@exept.de>
parents: 11179
diff changeset
  1005
    "Return if this class is an abstract class.
4fa83d5e806d comment
Claus Gittinger <cg@exept.de>
parents: 11179
diff changeset
  1006
     True is returned for CharacterArray here; false for subclasses.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  1007
     Abstract subclasses must redefine this again."
11229
4fa83d5e806d comment
Claus Gittinger <cg@exept.de>
parents: 11179
diff changeset
  1008
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1009
    ^ self == CharacterArray
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1010
!
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1011
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1012
speciesForCharacterSize:characterSize
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1013
    "answer the class, that is able to hold characters of size characterSize"
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1014
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1015
    characterSize <= 8 ifTrue:[^ String].
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1016
    characterSize <= 16 ifTrue:[^ Unicode16String].
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  1017
    ^ Unicode32String
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1018
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1019
20484
5bc49b246ef2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20480
diff changeset
  1020
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1021
!CharacterArray methodsFor:'Compatibility-ANSI'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1022
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1023
addLineDelimiters
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1024
    "Ansi compatibility - same as withCRs"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1025
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1026
    ^ self withCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1027
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1028
    "Modified: / 13.11.2001 / 19:16:25 / cg"
17543
bb01d670ad82 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17517
diff changeset
  1029
! !
bb01d670ad82 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17517
diff changeset
  1030
bb01d670ad82 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17517
diff changeset
  1031
!CharacterArray methodsFor:'Compatibility-Dolphin'!
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1032
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1033
copyExpanding:expandTable
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1034
    "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
  1035
     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
  1036
     Added for Dolphin compatibility"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1037
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1038
    |ds|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1039
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1040
    ds := WriteStream on:(self species new).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1041
    self do:[:eachChar |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1042
	|repl|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1043
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1044
	repl := expandTable at:eachChar ifAbsent:[nil].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1045
	repl isNil ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1046
	    ds nextPut:eachChar
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1047
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1048
	    repl size == 0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1049
		ds nextPut:repl
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1050
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1051
		ds nextPutAll:repl
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1052
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1053
	].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1054
    ].
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1055
    ^ ds contents.
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1056
!
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1057
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1058
formatWith:aString
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  1059
    "Compatibility method - do not use in new code.
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1060
     same as #bindWith: for Dolphin compatibility"
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1061
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1062
    ^ self bindWith:aString
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1063
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1064
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1065
     'hello%1world' formatWith:'123'
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1066
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1067
!
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1068
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1069
formatWith:arg1 with:arg2
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  1070
    "Compatibility method - do not use in new code.
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1071
     same as #bindWith: for Dolphin compatibility"
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1072
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1073
    ^ self bindWith:arg1 with:arg2
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1074
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1075
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1076
     'hello%1 %2world' formatWith:'123' with:234
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1077
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1078
!
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1079
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1080
formatWith:arg1 with:arg2 with:arg3
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  1081
    "Compatibility method - do not use in new code.
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1082
     same as #bindWith: for Dolphin compatibility"
6870
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1083
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1084
    ^ self bindWith:arg1 with:arg2 with:arg3
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1085
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1086
    "
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1087
     'hello%1 %2 %3world' formatWith:'123' with:234 with:345
d71264ee7a9a dolphin compatibility
Claus Gittinger <cg@exept.de>
parents: 6835
diff changeset
  1088
    "
6391
ff9f6df9ec4e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6228
diff changeset
  1089
! !
ff9f6df9ec4e *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 6228
diff changeset
  1090
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1091
!CharacterArray methodsFor:'Compatibility-GNU'!
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1092
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1093
% anArrayOfOperands
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1094
    "return a copy of the receiver, where a '%i' escape
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1095
     is replaced by the coresponding string from the argument array.
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1096
     '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
  1097
     Added for GNU-ST compatibility."
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1098
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1099
    ^ self expandPlaceholdersWith:anArrayOfOperands
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1100
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1101
    "
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1102
     'do you prefer %1 or rather %2 (not talking about %3) ?'
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1103
	% #('smalltalk' 'c++' 'c')
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1104
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1105
     'do you %(what) ?'
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1106
	% (Dictionary new at:#'what' put:'understand'; yourself)
14681
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1107
    "
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1108
! !
35b3d29d3b46 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14660
diff changeset
  1109
7261
f35fc9cee675 method category rename
Claus Gittinger <cg@exept.de>
parents: 7247
diff changeset
  1110
!CharacterArray methodsFor:'Compatibility-ST/V'!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1111
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1112
asArrayOfSubstrings
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1113
    "return an array of substrings from the receiver, interpreting
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1114
     separators (i.e. spaces & newlines) as word-delimiters.
18390
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1115
     This has been added for ST/V compatibility
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1116
     - the actual work is done in asCollectionOfWords.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  1117
     (sigh: it is called #'subStrings' in V'Age, #'substrings' in Squeak
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1118
     and #'asCollectionOfWords' in ST/X) "
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1119
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1120
    ^ self asCollectionOfWords asArray
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1121
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1122
    "
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1123
     '1 one two three four 5 five' asArrayOfSubstrings
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1124
     '1
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1125
one
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1126
	two three four 5 five' asArrayOfSubstrings
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1127
    "
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1128
!
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1129
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1130
byteAt:index put:aByte
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1131
    "store a byte at given index.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1132
     This is an ST/V compatibility method."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1133
1333
d3fdca956f0d allow storing of 0-bytes (be careful with printing then ...)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1134
"/    (aByte == 0) ifTrue:[
d3fdca956f0d allow storing of 0-bytes (be careful with printing then ...)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1135
"/        "store a space instead"
d3fdca956f0d allow storing of 0-bytes (be careful with printing then ...)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1136
"/        ^ super basicAt:index put:(Character space)
d3fdca956f0d allow storing of 0-bytes (be careful with printing then ...)
Claus Gittinger <cg@exept.de>
parents: 1312
diff changeset
  1137
"/    ].
11754
5132248cfd6e common definition of #byteAt:put between CharacterArray and Symbol
Stefan Vogel <sv@exept.de>
parents: 11632
diff changeset
  1138
    ^ self basicAt:index put:(Character value:aByte)
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1139
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1140
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1141
     'hello' copy at:1 put:$H asciiValue; yourself
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1142
     'hello' copy byteAt:1 put:72; yourself
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1143
     'hello' copy byteAt:1 put:0; yourself
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1144
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1145
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1146
    "Modified: 6.5.1996 / 10:35:26 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1147
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1148
19497
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1149
equalsIgnoreCase:aString
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1150
    "This is an ST/V compatibility method and an alias for sameAs:."
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1151
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1152
    ^ self sameAs:aString
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1153
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1154
    "
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1155
     'abc' equalsIgnoreCase: 'aBC'
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1156
    "
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1157
!
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1158
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1159
replChar:oldChar with:newChar
19497
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1160
    "return a copy of the receiver, with all oldChars replaced by newChar.
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1161
     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
  1162
3656
347ea0413b68 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
  1163
    ^ self copyReplaceAll:oldChar with:newChar
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1164
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1165
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1166
     '12345678901234567890' replChar:$0 with:$*
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1167
    "
3656
347ea0413b68 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
  1168
347ea0413b68 use #copyReplaceAll:with:
Claus Gittinger <cg@exept.de>
parents: 3630
diff changeset
  1169
    "Modified: / 18.7.1998 / 22:52:57 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1170
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1171
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1172
replChar:oldChar withString:newString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1173
    "return a copy of the receiver, with all oldChars replaced
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1174
     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
  1175
     This is an ST/V compatibility method."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1176
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1177
    |tmpStream|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1178
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  1179
    tmpStream := self species writeStream.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1180
    self do:[:element |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1181
	element = oldChar ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1182
	    tmpStream nextPutAll:newString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1183
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1184
	    tmpStream nextPut:element
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1185
	].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1186
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1187
    ^ tmpStream contents
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1188
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1189
   "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1190
     '12345678901234567890' replChar:$0 withString:'foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1191
     'a string with spaces' replChar:$  withString:' foo '
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1192
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1193
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1194
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1195
replString:subString withString:newString
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1196
    "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
  1197
     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
  1198
     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
  1199
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  1200
    ^ self copyReplaceString:subString withString:newString
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1201
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1202
   "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1203
     '12345678901234567890' replString:'123' withString:'OneTwoThree'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1204
     '12345678901234567890' replString:'123' withString:'*'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1205
     '12345678901234567890' replString:'234' withString:'foo'
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1206
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1207
     ('a string with spaces' replChar:$  withString:' foo ')
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1208
	replString:'foo' withString:'bar'
4244
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1209
    "
5deefa3144fb added #replString:withString:
Claus Gittinger <cg@exept.de>
parents: 4156
diff changeset
  1210
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  1211
    "Modified: / 12-05-2004 / 12:00:27 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1212
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1213
9275
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1214
subString:start to:end
18390
ecfcd8d7d5ed class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18350
diff changeset
  1215
    "same as copyFrom:to:
19497
65e69b6a0972 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 19473
diff changeset
  1216
     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
  1217
9275
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1218
    ^ self copyFrom:start to:end
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1219
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1220
   "
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1221
     '12345678901234567890' subString:3 to:8
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1222
    "
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1223
!
556e8b67ad2d st/v compat.
Claus Gittinger <cg@exept.de>
parents: 9265
diff changeset
  1224
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1225
trimBlanks
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  1226
    "return a copy of the receiver without leading and trailing spaces.
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  1227
     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
  1228
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1229
    ^ self withoutSpaces
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1230
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1231
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1232
     '    spaces at beginning' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1233
     'spaces at end    ' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1234
     '    spaces at beginning and end     ' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1235
     'no spaces' trimBlanks
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1236
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1237
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1238
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1239
!CharacterArray methodsFor:'Compatibility-Squeak'!
4409
86e049b21f8d added #includesSubstring:caseSensitive:
Claus Gittinger <cg@exept.de>
parents: 4389
diff changeset
  1240
19171
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1241
asBoldText
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1242
    "return self as a bold text"
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1243
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1244
    ^Text string: self emphasis: #bold
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1245
!
b6405bcb8e75 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 19039
diff changeset
  1246
6148
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1247
asDate
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1248
    "Many allowed forms, see Date.readFrom:"
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1249
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1250
    ^ Date readFrom: (ReadStream on: self)
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1251
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1252
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1253
     '30 Apr 1999' asDate dayName capitalized
6148
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1254
    "
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1255
!
3230f949237c asDate (for squeak)
james
parents: 6139
diff changeset
  1256
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  1257
asOneByteString
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  1258
    "return the receiver converted to a 'normal' string.
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1259
     Same as asSingleByteString - for Squeak/Pharo compatibility."
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  1260
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  1261
    ^ self asSingleByteString
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  1262
!
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  1263
8971
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1264
asUrl
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1265
    "Same as asURL - for Squeak/Pharo compatibility."
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1266
8971
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1267
    ^ self asURL
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1268
!
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1269
10840
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1270
asWideString
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1271
    "return a two-byte string containing the same characters as the receiver.
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1272
     Same as asTwoByteString - for Squeak/Pharo compatibility."
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  1273
10840
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1274
    ^ self asTwoByteString
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1275
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1276
    "
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1277
     'abc' asWideString
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1278
    "
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1279
!
47bf2d2cf941 +asWideString
Claus Gittinger <cg@exept.de>
parents: 10721
diff changeset
  1280
4989
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1281
capitalized
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1282
    "same as asUppercaseFirst for Squeak/Pharo compatibility"
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  1283
4989
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1284
    ^ self asUppercaseFirst
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1285
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1286
    "
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1287
     'hello' capitalized
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1288
    "
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1289
!
d35f323b446c checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4981
diff changeset
  1290
10841
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1291
caseInsensitiveLessOrEqual:aString
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1292
    "compare the receiver against the argument ignoring case differences
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1293
     For Squeak/Pharo compatibility"
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1294
10841
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1295
    ^ (self compareCaselessWith:aString) <= 0
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1296
!
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1297
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1298
caseSensitiveLessOrEqual:aString
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1299
    "compare the receiver against the argument caring for case differences
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1300
     For Squeak/Pharo compatibility"
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1301
10841
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1302
    ^ self <= aString
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1303
!
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1304
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1305
charactersExactlyMatching:aString
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  1306
    "return the number of characters I share as a prefix with the argument, aString"
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  1307
10841
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1308
    |idx nMax|
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1309
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1310
    nMax :=(self size) min:(aString size).
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1311
    idx := 1.
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1312
    [idx <= nMax] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1313
	(self at:idx) = (aString at:idx) ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1314
	    ^ idx - 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1315
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1316
	idx := idx + 1.
10841
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1317
    ].
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1318
    ^ nMax
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1319
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1320
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  1321
     'abc' charactersExactlyMatching:'abc'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  1322
     'abc' charactersExactlyMatching:'abcd'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  1323
     'abcd' charactersExactlyMatching:'abc'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  1324
     'abc' charactersExactlyMatching:'abd'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  1325
     'abc' charactersExactlyMatching:'xxx'
10841
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1326
    "
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1327
!
00baa320d8ad squeak compat.
Claus Gittinger <cg@exept.de>
parents: 10840
diff changeset
  1328
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1329
endsWithDigit
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1330
    "Answer whether the receiver's final character represents a digit.  3/11/96 sw"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1331
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1332
    |len|
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1333
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1334
    ^ (len := self size) > 0 and: [(self at:len) isDigit]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1335
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1336
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  1337
findDelimiters:delimiters startingAt:start
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1338
    "Answer the index of the character within the receiver, starting at start,
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1339
     that matches one of the delimiters.
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1340
     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
  1341
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1342
    |idx|
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
    idx := self indexOfAny:delimiters startingAt:start.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1345
    idx == 0 ifTrue:[^ self size + 1].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1346
    ^ idx.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1347
"/start to: self size do: [:i |
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1348
"/        |char|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1349
"/
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1350
"/        char := self at: i.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1351
"/        delimiters do: [:delim | delim = char ifTrue: [^ i]]
8971
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1352
"/    ].
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1353
"/    ^ self size + 1
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1354
!
0b86229f3ed9 Squeak compat.
Claus Gittinger <cg@exept.de>
parents: 8954
diff changeset
  1355
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1356
findTokens:delimiterOrDelimiters
7270
37248a67718a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7265
diff changeset
  1357
    "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
  1358
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1359
    delimiterOrDelimiters size == 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1360
	^ self asCollectionOfSubstringsSeparatedBy:delimiterOrDelimiters
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1361
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1362
	^ self asCollectionOfSubstringsSeparatedByAny:delimiterOrDelimiters
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1363
    ].
7270
37248a67718a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7265
diff changeset
  1364
37248a67718a *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7265
diff changeset
  1365
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1366
     'a|b#c||e' findTokens:#($# $|)
13624
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1367
     'a|b#c||e' findTokens:$|
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1368
    "
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1369
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1370
    "Modified: / 04-09-2011 / 20:31:21 / cg"
5670d4c4b06a changed: #findTokens:
Claus Gittinger <cg@exept.de>
parents: 13611
diff changeset
  1371
    "Modified (comment): / 05-09-2011 / 04:25:28 / cg"
4981
2ee8cd2c4c8e squeak compatibility
ps
parents: 4974
diff changeset
  1372
!
2ee8cd2c4c8e squeak compatibility
ps
parents: 4974
diff changeset
  1373
4974
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1374
includesSubString:aString
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1375
    "return true, if a substring is contained in the receiver.
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1376
     The compare is case sensitive."
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1377
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1378
    ^ self includesString:aString
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1379
cde2ee5adeb0 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4890
diff changeset
  1380
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1381
     'hello world' includesSubString:'Hel'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1382
     'hello world' includesSubString:'hel'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1383
     'hello world' includesSubString:'llo'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1384
    "
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
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1389
11178
668d5d9a4d5d added #includesSubString:caseSensitive:
sr
parents: 11062
diff changeset
  1390
includesSubString:aString caseSensitive:caseSensitive
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1391
    "sigh - an alias; added for Squeak/Pharo compatibility"
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1392
11179
178086a92325 *** empty log message ***
sr
parents: 11178
diff changeset
  1393
    ^ self includesSubstring:aString caseSensitive:caseSensitive
11178
668d5d9a4d5d added #includesSubString:caseSensitive:
sr
parents: 11062
diff changeset
  1394
!
668d5d9a4d5d added #includesSubString:caseSensitive:
sr
parents: 11062
diff changeset
  1395
16875
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1396
includesSubstring: aString
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1397
    "sigh - an alias; added for Squeak/Pharo compatibility"
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1398
16875
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1399
    ^ self includesSubString: aString
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1400
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1401
    "Created: / 03-10-2014 / 02:47:52 / Jan Vrany <jan.vrany@fit.cvut.cz>"
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1402
!
32e61bb3a742 class: CharacterArray>>#includesSubstring: (for Squeak compatibility)
Jan Vrany <jan.vrany@fit.cvut.cz>
parents: 16863
diff changeset
  1403
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1404
includesSubstring:aString caseSensitive:caseSensitive
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1405
    "return true, if a substring is contained in the receiver.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1406
     The argument, caseSensitive controls if case is ignored in the compare."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1407
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1408
    "/ for now,  a q&d hack ...
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1409
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1410
    caseSensitive ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1411
	^ self asLowercase includesString:aString asLowercase
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1412
    ].
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1413
    ^ self includesString:aString
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1414
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1415
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1416
     'hello world' includesSubstring:'Hel' caseSensitive:true
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1417
     'hello world' includesSubstring:'Hel' caseSensitive:false
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1418
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1419
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1420
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1421
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1422
!
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1423
6979
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1424
isAllDigits
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1425
    "Answer whether the receiver's characters are all digits"
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1426
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1427
    ^ self conform:[:eachChar | eachChar isDigit]
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1428
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1429
    "
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1430
     'hello world' isAllDigits
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1431
     '12344' isAllDigits
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1432
    "
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1433
!
128a928d5dac isAllDigits - Squeak compatibility
penk
parents: 6969
diff changeset
  1434
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1435
lastSpacePosition
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1436
    "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
  1437
     Added for Squeak/Pharo compatibility"
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  1438
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1439
    ^ self lastIndexOfSeparator
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1440
!
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1441
7022
0c3c73f83b7f padded:to:with: - for squeak
penk
parents: 7020
diff changeset
  1442
padded:leftOrRight to:paddedSize with:padCharacter
20155
6ab108dfcb3f #DOCUMENTATION by mawalch
mawalch
parents: 20017
diff changeset
  1443
    "pad left (leftOrRight == #left) or right"
14053
acbb97913c30 comment/format in: #padded:to:with:
Claus Gittinger <cg@exept.de>
parents: 14050
diff changeset
  1444
7022
0c3c73f83b7f padded:to:with: - for squeak
penk
parents: 7020
diff changeset
  1445
    leftOrRight == #left ifTrue:[
20155
6ab108dfcb3f #DOCUMENTATION by mawalch
mawalch
parents: 20017
diff changeset
  1446
        ^ self leftPaddedTo:paddedSize with:padCharacter
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1447
    ].
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1448
    ^ self paddedTo:paddedSize with:padCharacter
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1449
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1450
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1451
     'hello' padded:#right to:10 with:$.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1452
     'hello' padded:#left to:10 with:$.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1453
    "
14053
acbb97913c30 comment/format in: #padded:to:with:
Claus Gittinger <cg@exept.de>
parents: 14050
diff changeset
  1454
acbb97913c30 comment/format in: #padded:to:with:
Claus Gittinger <cg@exept.de>
parents: 14050
diff changeset
  1455
    "Modified (comment): / 07-03-2012 / 16:31:33 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1456
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1457
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1458
skipDelimiters:delimiters startingAt:start
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1459
    "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
  1460
     that does NOT match one of the delimiters.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1461
     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
  1462
     Assumes the delimiters to be a non-empty string."
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
    start to:self size do:[:i |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1465
	delimiters detect:[:delim | delim = (self at:i) ] ifNone:[ ^ i ]
9192
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
    ^ self size + 1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1468
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1469
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1470
     '123***7890' skipDelimiters:'*' startingAt:4
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1471
     '123***7890' skipDelimiters:'*' startingAt:3
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1472
     '123***7890' skipDelimiters:'*' startingAt:10
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1473
     '123*******' skipDelimiters:'*' startingAt:10
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1474
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1475
!
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1476
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1477
substrings
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1478
    "return a collection consisting of all words contained in the receiver.
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1479
     Words are separated by whitespace.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1480
     This has been added for Squeak compatibility.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1481
     (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
  1482
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1483
    ^ self asCollectionOfWords
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1484
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1485
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1486
     'foo bar baz' substrings
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1487
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1488
!
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1489
12665
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1490
substringsSeparatedBy:separatorCharacter
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1491
    "return a collection consisting of all words contained in the receiver.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1492
     Words are separated by the given separator character.
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1493
     This has been added for Squeak/Pharo compatibility.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  1494
     (sigh: it is called #'subStrings:' in V'Age,
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1495
      and #'asCollectionOfSubstringsSeparatedBy' in ST/X) "
18391
9241055f7c0d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18390
diff changeset
  1496
12665
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1497
    ^ self asCollectionOfSubstringsSeparatedBy:separatorCharacter
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1498
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1499
    "
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1500
     'foo bar, baz' substringsSeparatedBy:$,
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1501
    "
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1502
!
b027fc5aec4e added: #substringsSeparatedBy:
Claus Gittinger <cg@exept.de>
parents: 12664
diff changeset
  1503
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1504
truncateTo:smallSize
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1505
    "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
  1506
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1507
    self size <= smallSize ifTrue:[^ self].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1508
    ^ self copyFrom: 1 to: smallSize
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1509
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1510
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1511
     'hello world' truncateTo:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1512
     'hello' truncateTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1513
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1514
     'hello world' copyTo:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1515
     'hello' copyTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1516
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1517
!
5795
d67a8ff4d98e added #truncateTo:
Claus Gittinger <cg@exept.de>
parents: 5794
diff changeset
  1518
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1519
withBlanksTrimmed
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  1520
    "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
  1521
     Notice the bad naming - it is trimming separators, not just blanks.
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  1522
     Added for Squeak compatibility and an alias for withoutSeparators"
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1523
14865
8d6cc362aff7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14768
diff changeset
  1524
    ^ 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
  1525
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1526
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1527
     '  hello    world    ' withBlanksTrimmed
4890
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1528
    "
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1529
!
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1530
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1531
withNoLineLongerThan: aNumber
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1532
    "Answer a string with the same content as receiver, but rewrapped so that no line has more characters than the given number"
fa9abaa225ef checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4842
diff changeset
  1533
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1534
    | listOfLines currentLast currentStart resultString putativeLast putativeLine crPosition |
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1535
14451
c06e7885b675 changed: #withNoLineLongerThan:
Claus Gittinger <cg@exept.de>
parents: 14420
diff changeset
  1536
    (aNumber isNumber not or:[ aNumber < 1] ) ifTrue: [self error: 'too narrow'].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1537
    listOfLines _ OrderedCollection new.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1538
    currentLast _ 0.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1539
    [currentLast < self size] whileTrue:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1540
	    [currentStart _ currentLast + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1541
	    putativeLast _ (currentStart + aNumber - 1) min: self size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1542
	    putativeLine _ self copyFrom: currentStart to: putativeLast.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1543
	    (crPosition _ putativeLine indexOf: Character cr) > 0 ifTrue:
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1544
		    [putativeLast _ currentStart + crPosition - 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1545
		    putativeLine _ self copyFrom: currentStart to: putativeLast].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1546
	    currentLast _ putativeLast == self size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1547
		    ifTrue:
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1548
			    [putativeLast]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1549
		    ifFalse:
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1550
			    [currentStart + putativeLine lastSpacePosition - 1].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1551
	    currentLast <= currentStart ifTrue:
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1552
		    ["line has NO spaces; baleout!!"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1553
		    currentLast _ putativeLast].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1554
	    listOfLines add: (self copyFrom: currentStart to: currentLast) withBlanksTrimmed].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1555
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1556
    listOfLines size > 0 ifFalse: [^ ''].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1557
    resultString _ listOfLines first.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1558
    2 to: listOfLines size do:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1559
	    [:i | resultString _ resultString, Character cr asString, (listOfLines at: i)].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1560
    ^ resultString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1561
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1562
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1563
     #(5 7 20) collect:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1564
	[:i | 'Fred the bear went down to the brook to read his book in silence' withNoLineLongerThan: i]
14451
c06e7885b675 changed: #withNoLineLongerThan:
Claus Gittinger <cg@exept.de>
parents: 14420
diff changeset
  1565
    "
10883
34881021d5ba +withoutTrailingBlanks
Claus Gittinger <cg@exept.de>
parents: 10862
diff changeset
  1566
!
34881021d5ba +withoutTrailingBlanks
Claus Gittinger <cg@exept.de>
parents: 10862
diff changeset
  1567
12343
0a93eee37d65 added: #withSqueakLineEndings
Claus Gittinger <cg@exept.de>
parents: 12330
diff changeset
  1568
withSqueakLineEndings
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1569
    "assume the string is textual, and that CR, LF, and CRLF are all
20258
3d40864ad0bd #OTHER by mawalch
mawalch
parents: 20221
diff changeset
  1570
     valid line endings.  Replace each occurrence with a single CR"
12343
0a93eee37d65 added: #withSqueakLineEndings
Claus Gittinger <cg@exept.de>
parents: 12330
diff changeset
  1571
0a93eee37d65 added: #withSqueakLineEndings
Claus Gittinger <cg@exept.de>
parents: 12330
diff changeset
  1572
    ^ self asStringCollection asStringWith:Character cr.
0a93eee37d65 added: #withSqueakLineEndings
Claus Gittinger <cg@exept.de>
parents: 12330
diff changeset
  1573
!
0a93eee37d65 added: #withSqueakLineEndings
Claus Gittinger <cg@exept.de>
parents: 12330
diff changeset
  1574
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1575
withoutLeading: char
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1576
    "return a copy of myself without leading a char.
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1577
     Returns an empty string, if the receiver consist only of a char."
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1578
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1579
    ^ self withoutLeadingForWhich:[:ch | ch = char]
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1580
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1581
    "
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1582
     '****foo****' withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1583
     'foo****'     withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1584
     '*'           withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1585
     ''            withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1586
     '****foo'     withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1587
     '*******'     withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1588
     'foo'         withoutLeading: $*
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1589
     'f***o***o'   withoutLeading: $*
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1590
     ('**' , Character tab asString , '*foo***') withoutLeading: $* inspect
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1591
    "
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1592
!
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1593
11565
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1594
withoutTrailing:char
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1595
    "return a copy of myself without trailing char.
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1596
     Returns an empty string, if the receiver consist only of char."
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1597
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1598
    ^ self withoutTrailingForWhich:[:ch | ch = char]
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1599
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  1600
    "
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1601
     '    foo....' withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1602
     'foo....'     withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1603
     '    foo'     withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1604
     '.......'     withoutTrailing:$.
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  1605
     'foo'         withoutTrailing:$.
11565
71a4edaa21e9 +withoutTrailing:
Claus Gittinger <cg@exept.de>
parents: 11525
diff changeset
  1606
    "
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1607
! !
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1608
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1609
!CharacterArray methodsFor:'Compatibility-V''Age'!
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1610
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1611
addLineDelimiter
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1612
    "replace all '\'-characters by line delimiter (cr) - characters.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1613
     This has been added for VisualAge compatibility."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1614
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1615
    ^ self withCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1616
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1617
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1618
bindWith:aString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1619
    "return a copy of the receiver, where a '%1' escape is
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1620
     replaced by aString.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1621
     This has been added for VisualAge compatibility."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1622
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1623
    ^ self expandPlaceholdersWith:(Array with:aString)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1624
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1625
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1626
     'do you like %1 ?' bindWith:'smalltalk'
19785
c9672beda785 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19775
diff changeset
  1627
     '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
  1628
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1629
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1630
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1631
bindWith:string1 with:string2
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1632
    "return a copy of the receiver, where a '%1' escape is
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1633
     replaced by string1 and '%2' is replaced by string2.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1634
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1635
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1636
    ^ self expandPlaceholdersWith:(Array with:string1 with:string2)
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1637
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1638
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1639
     'do you prefer %1 or rather %2 ?'
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1640
	bindWith:'smalltalk' with:'c++'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1641
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1642
!
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1643
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  1644
bindWith:str1 with:str2 with:str3
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1645
    "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
  1646
     are replaced by str1, str2 and str3 respectively.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1647
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1648
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1649
    ^ self expandPlaceholdersWith:(Array with:str1 with:str2 with:str3)
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1650
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1651
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1652
     'do you prefer %1 or rather %2 (not talking about %3) ?'
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1653
	bindWith:'smalltalk' with:'c++' with:'c'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1654
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1655
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1656
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1657
bindWith:str1 with:str2 with:str3 with:str4
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1658
    "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
  1659
     are replaced by str1, str2, str3 and str4 respectively.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1660
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1661
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1662
    ^ self expandPlaceholdersWith:(Array with:str1 with:str2 with:str3 with:str4)
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1663
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1664
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1665
     'do you prefer %1 or rather %2 (not talking about %3 or even %4) ?'
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1666
	bindWith:'smalltalk' with:'c++' with:'c' with:'assembler'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1667
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1668
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1669
2344
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1670
bindWith:str1 with:str2 with:str3 with:str4 with:str5
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1671
    "return a copy of the receiver, where a '%1' .. '%5' escapes
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1672
     are replaced by str1 .. str5 respectively.
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1673
     This has been added for VisualAge compatibility."
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1674
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1675
    ^ self expandPlaceholdersWith:(Array with:str1 with:str2 with:str3 with:str4 with:str5)
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1676
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1677
    "Created: 31.1.1997 / 16:25:42 / cg"
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1678
!
b3788119533f checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2250
diff changeset
  1679
5343
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1680
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
  1681
    "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
  1682
     are replaced by str1 .. str6 respectively.
5343
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1683
     This has been added for VisualAge compatibility."
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1684
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1685
    ^ self expandPlaceholdersWith:(Array with:str1 with:str2
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1686
					 with:str3 with:str4
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1687
					 with:str5 with:str6)
11524
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1688
!
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1689
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1690
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
  1691
    "return a copy of the receiver, where a '%1' .. '%7' escapes
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1692
     are replaced by str1 .. str7 respectively.
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1693
     This has been added for VisualAge compatibility."
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1694
8742d67d9296 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11483
diff changeset
  1695
    ^ self expandPlaceholdersWith:(Array with:str1 with:str2
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1696
					 with:str3 with:str4
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1697
					 with:str5 with:str6
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1698
					 with:str7)
5343
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1699
!
bac9bc59a698 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5342
diff changeset
  1700
13996
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1701
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
  1702
    "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
  1703
     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
  1704
     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
  1705
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1706
    ^ self expandPlaceholdersWith:(Array with:str1 with:str2
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1707
					 with:str3 with:str4
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1708
					 with:str5 with:str6
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1709
					 with:str7 with:str8)
13996
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1710
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1711
    "Created: / 06-02-2012 / 10:33:18 / cg"
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1712
!
a86faa4f17b8 added: #bindWith:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13987
diff changeset
  1713
14014
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1714
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
  1715
    "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
  1716
     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
  1717
     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
  1718
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1719
    ^ self expandPlaceholdersWith:(Array with:str1 with:str2
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1720
					 with:str3 with:str4
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1721
					 with:str5 with:str6
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1722
					 with:str7 with:str8
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1723
					 with:str9)
14014
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1724
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1725
    "Created: / 14-02-2012 / 17:42:31 / cg"
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1726
!
3aff2d7c41c8 added: #bindWith:with:with:with:with:with:with:with:with:
Claus Gittinger <cg@exept.de>
parents: 13996
diff changeset
  1727
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1728
bindWithArguments:anArrayOfStrings
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1729
    "return a copy of the receiver, where a '%i' escape
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1730
     is replaced by the coresponding string from the argument array.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1731
     'i' may be between 1 and 9 (i.e. a maximum of 9 placeholders is allowed).
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1732
     This has been added for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1733
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1734
    ^ self expandPlaceholdersWith:anArrayOfStrings
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1735
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1736
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1737
     'do you prefer %1 or rather %2 (not talking about %3) ?'
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1738
	bindWithArguments:#('smalltalk' 'c++' 'c')
12196
5718ecf81f37 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12188
diff changeset
  1739
5718ecf81f37 comment/format in:
Claus Gittinger <cg@exept.de>
parents: 12188
diff changeset
  1740
     'do you %(what) ?'
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1741
	bindWithArguments:(Dictionary new at:#'what' put:'understand'; yourself)
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1742
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1743
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1744
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1745
subStrings
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1746
    "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
  1747
     Words are separated by whitespace.
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1748
     This has been added for VisualAge compatibility.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  1749
     (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
  1750
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1751
    ^ self asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1752
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1753
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1754
     'hello world, this is smalltalk' subStrings
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1755
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1756
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1757
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1758
subStrings:separatorCharacterOrString
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1759
    "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
  1760
     Words are separated by separatorCharacter.
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1761
     This is similar to split: (squeak) and asCollectionOfSubstringsSeparatedBy: (st/x)
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1762
     and has been added for VisualAge compatibility."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  1763
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1764
    separatorCharacterOrString isCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1765
	^ self asCollectionOfSubstringsSeparatedBy:separatorCharacterOrString
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1766
    ].
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1767
    ^ self asCollectionOfSubstringsSeparatedByAny:separatorCharacterOrString
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1768
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1769
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  1770
     'foo:bar:baz:smalltalk' subStrings:$:
16181
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1771
     'foo:bar:baz:smalltalk' subStrings:':'
14e0c2a81b72 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16175
diff changeset
  1772
     'foo.bar,baz-smalltalk' subStrings:'.,-'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1773
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1774
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1775
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1776
trimSeparators
18392
c79a9b3a9ba4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18391
diff changeset
  1777
    "return a copy of the receiver without leading and trailing whiteSpace.
18921
5e7a47ecb14f #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 18901
diff changeset
  1778
     Added for VisualAge compatibility (an alias for withoutSeparators)"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1779
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1780
    ^ self withoutSeparators
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1781
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1782
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1783
!CharacterArray methodsFor:'Compatibility-VW'!
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1784
6139
1b86d43f8eb7 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6122
diff changeset
  1785
asLogicalFileSpecification
1b86d43f8eb7 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6122
diff changeset
  1786
    ^ self asFilename
1b86d43f8eb7 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6122
diff changeset
  1787
1b86d43f8eb7 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6122
diff changeset
  1788
    "Created: / 30.10.2001 / 17:29:53 / cg"
1b86d43f8eb7 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6122
diff changeset
  1789
!
1b86d43f8eb7 VW compatibility
Claus Gittinger <cg@exept.de>
parents: 6122
diff changeset
  1790
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1791
expandMacros
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1792
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1793
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1794
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1795
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1796
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1797
    ^ self expandMacrosWithArguments:#()
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1798
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1799
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1800
     'hello<n>foo' expandMacros
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1801
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1802
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1803
    "Modified: / 18.6.1998 / 16:03:02 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1804
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1805
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1806
expandMacrosWith:arg
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1807
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1808
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1809
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1810
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1811
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1812
    ^ self expandMacrosWithArguments:(Array with:arg)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1813
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1814
    "Created: / 1.11.1997 / 13:01:28 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1815
    "Modified: / 1.11.1997 / 13:30:50 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1816
!
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1817
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1818
expandMacrosWith:arg1 with:arg2
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1819
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1820
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1821
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1822
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1823
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1824
    ^ self expandMacrosWithArguments:(Array with:arg1 with:arg2)
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1825
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1826
    "Modified: / 6.7.1998 / 21:58:14 / cg"
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1827
!
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1828
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1829
expandMacrosWith:arg1 with:arg2 with:arg3
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1830
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1831
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1832
     Read the comment in #expandMacrosWithArguments: about
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1833
     limited compatibility issues."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1834
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1835
    ^ self expandMacrosWithArguments:(Array with:arg1 with:arg2 with:arg3)
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1836
!
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1837
10353
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1838
expandMacrosWith:arg1 with:arg2 with:arg3 with:arg4
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1839
    "ST80 compatibility - expand '<..>' macros with
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1840
     argument strings. Similar to #bindWith:.
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1841
     Read the comment in #expandMacrosWithArguments: about
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1842
     limited compatibility issues."
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1843
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1844
    ^ self expandMacrosWithArguments:(Array with:arg1 with:arg2 with:arg3 with:arg4)
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1845
!
65fb7aa2c6c2 added #expandMacrosWith:with:with:with:
Stefan Vogel <sv@exept.de>
parents: 10134
diff changeset
  1846
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1847
expandMacrosWithArguments:argArray
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1848
    "ST80 compatibility - expand '<..>' macros with
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1849
     argument strings. Similar to #bindWith:.
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1850
     WARNING: possibly not all ST80 expansions are supported here."
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1851
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1852
    "/ supported expansions:
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1853
    "/
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1854
    "/   <#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
  1855
    "/   <#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
  1856
    "/   <#?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
  1857
    "/              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
  1858
    "/   <n>        replace by a newLine character
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1859
    "/   <t>        replace by a tab character
6834
eba4b58b8692 fixed expandMacros (%-escape)
Claus Gittinger <cg@exept.de>
parents: 6810
diff changeset
  1860
    "/   %X         the X character itself
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1861
8999
f3fda66ea51e #expandMacrosWithArguments: - be mor friendly to xml strings.
Stefan Vogel <sv@exept.de>
parents: 8971
diff changeset
  1862
    |in out c fmt nr arg s1 s2 peekc|
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1863
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1864
    in := self readStream.
10721
58e6950264cb care for bitsPerCharacter when expanding macros
Claus Gittinger <cg@exept.de>
parents: 10703
diff changeset
  1865
    out := CharacterWriteStream on:(self species uninitializedNew:self size).
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1866
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1867
    [in atEnd] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1868
	c := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1869
	c == $% ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1870
	    c := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1871
	    out nextPut:c
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1872
	] ifFalse:[c ~~ $< ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1873
	    out nextPut:c.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1874
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1875
	    peekc := in peek.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1876
	    [peekc == $<] whileTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1877
		out nextPut:$<.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1878
		peekc := in nextPeek.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1879
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1880
	    peekc == $n ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1881
		peekc := in nextPeek.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1882
		peekc == $> ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1883
		    in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1884
		    out cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1885
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1886
		    out nextPutAll:'<n'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1887
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1888
	    ] ifFalse:[peekc == $t ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1889
		peekc := in nextPeek.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1890
		peekc == $> ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1891
		    in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1892
		    out tab.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1893
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1894
		    out nextPutAll:'<t'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1895
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1896
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1897
		peekc isDigit ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1898
		    "start an argument expansion ..."
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1899
		    nr := Integer readFrom:in onError:nil.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1900
		    nr isNil ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1901
			"this cannot happen (there is at least one digit)"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1902
			self error:'invalid format' mayProceed:true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1903
			^ self
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1904
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1905
		    fmt := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1906
		    (fmt ~~ $? and:[in peek ~~ $>]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1907
			out nextPut:$<.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1908
			nr printOn:out.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1909
			out nextPut:fmt.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1910
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1911
			(nr between:1 and:argArray size) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1912
			    arg := argArray at:nr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1913
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1914
			    arg := ''
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1915
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1916
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1917
			fmt == $p ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1918
			    "expand with args printString"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1919
			    arg printOn:out.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1920
			] ifFalse:[fmt == $s ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1921
			    "expand with arg itself"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1922
			    arg isText ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1923
				out contentsSpecies isText ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1924
				    out := (TextStream ? CharacterWriteStream on:Text new) nextPutAll:out contents; yourself.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1925
				].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1926
				out nextPutAll:arg.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1927
			    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1928
				out nextPutAll:arg asString string.  "see method comment: arg must know #asString"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1929
			    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1930
			] ifFalse:[fmt == $? ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1931
			    s1 := in upTo:$:.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1932
			    s2 := in nextUpTo:$>.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1933
			    arg == true ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1934
				out nextPutAll:s1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1935
			    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1936
				out nextPutAll:s2
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1937
			    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1938
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1939
			    "what does VW do here ?"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1940
			    self error:'invalid format' mayProceed:true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1941
			    ^ self
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1942
			]]].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1943
			c := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1944
			c ~~ $> ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1945
			    "what does VW do here ?"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1946
			    self error:'invalid format' mayProceed:true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1947
			    ^ self
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1948
			]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1949
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1950
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1951
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1952
		    out nextPut:$<.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1953
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1954
	    ]].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1955
	]].
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1956
    ].
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1957
    ^ out contents
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1958
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1959
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1960
     'hello <1s> how are you' expandMacrosWith:(OperatingSystem getLoginName)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  1961
     'one plus one is <1p>' expandMacrosWith:2
5964
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1962
    "
0f748abc0c17 protocol rename
Claus Gittinger <cg@exept.de>
parents: 5963
diff changeset
  1963
10721
58e6950264cb care for bitsPerCharacter when expanding macros
Claus Gittinger <cg@exept.de>
parents: 10703
diff changeset
  1964
    "Modified: / 18-09-2007 / 22:50:43 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1965
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1966
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1967
isCharacters
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1968
    "added for visual works compatibility"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  1969
    ^ true
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
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  1972
!CharacterArray methodsFor:'JavaScript support'!
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  1973
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  1974
unquote
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  1975
    "removes double quotes from the receiver.
19698
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1976
     This is the JavaScript standard unquote function."
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1977
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1978
    ^ self unquote:$"
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  1979
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  1980
    "
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  1981
     'hello' quote unquote
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  1982
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  1983
     JavaScriptParser evaluate:'''hello''.quote.unquote'
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  1984
    "
19698
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1985
!
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1986
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1987
unquote:quoteCharacter
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1988
    "removes quoteCharacter from either end of the receiver."
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1989
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1990
    |mySize|
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1991
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1992
    (mySize := self size) >= 2 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1993
	((self first == quoteCharacter) and:[self last == quoteCharacter]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1994
	    ^ self copyFrom:2 to:mySize-1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  1995
	].
19698
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1996
    ].
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1997
    ^ self
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1998
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  1999
    "
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2000
     '*hello*' unquote:$*
87d14d6f90ca #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19692
diff changeset
  2001
    "
16295
54510929f67c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16245
diff changeset
  2002
! !
13510
150d12670b9f comment/format
Claus Gittinger <cg@exept.de>
parents: 13504
diff changeset
  2003
16175
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2004
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2005
!CharacterArray methodsFor:'character searching'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2006
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2007
includesMatchCharacters
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  2008
    "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
  2009
     for match operations; false if not.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2010
     Here, do not care for $\ escapes"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2011
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2012
    ^ self includesAny:'*#['
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2013
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2014
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2015
     '*foo' includesMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2016
     '\*foo' includesMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2017
     '\*foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2018
     '*foo' includesMatchCharacters
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2019
     '\\*foo' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2020
     'foo*' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2021
     'foo\*' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2022
     'foo\' includesMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2023
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2024
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2025
    "Modified: 2.4.1997 / 18:12:34 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2026
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2027
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2028
includesSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2029
    "return true, if the receiver contains any whitespace characters"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2030
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2031
    ^ (self indexOfSeparator ~~ 0)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2032
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2033
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2034
     'hello world' includesSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2035
     'helloworld' includesSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2036
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2037
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2038
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2039
includesUnescapedMatchCharacters
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2040
    "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
  2041
     for match operations; false if not.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2042
     Here, care for $\ escapes"
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2043
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2044
    |idx sz specialChars escape|
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2045
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2046
    idx := 1.
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2047
    sz := self size.
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2048
    specialChars := '*#[\'.
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2049
    (escape := self class matchEscapeCharacter) ~~ $\ ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2050
	specialChars := specialChars copy.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2051
	specialChars at:specialChars size put:escape
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2052
    ].
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  2053
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
  2054
    [
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2055
	idx := self indexOfAny:specialChars startingAt:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2056
	idx == 0 ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2057
	(self at:idx) == escape ifFalse:[^ true].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2058
	idx := idx + 2.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2059
	idx > sz ifTrue:[^ false].
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
  2060
    ] loop.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2061
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2062
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2063
     '*foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2064
     '\*foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2065
     '\\foo' includesUnescapedMatchCharacters
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2066
     '\\\$foo' includesUnescapedMatchCharacters
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2067
     '*foo' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2068
     '\\*foo' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2069
     'foo*' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2070
     'foo\*' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2071
     'foo\' includesUnescapedMatchCharacters
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2072
    "
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2073
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2074
    "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
  2075
    "Created: 2.4.1997 / 17:23:26 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2076
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2077
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2078
indexOfControlCharacterStartingAt:startIndex
3668
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2079
    "return the index of the next control character;
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2080
     that is a character with asciiValue < 32.
15605
99acf495a3cf class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15540
diff changeset
  2081
     Start the search at startIndex, searching forward.
3668
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2082
     Return 0 if none is found."
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2083
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2084
    |start  "{ Class: SmallInteger }"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2085
     mySize "{ Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2086
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2087
    start := startIndex.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2088
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2089
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2090
    start to:mySize do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2091
	(self at:index) isControlCharacter ifTrue:[^ index]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2092
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2093
    ^ 0
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2094
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2095
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2096
     'hello world' asTwoByteString            indexOfControlCharacterStartingAt:1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2097
     'hello world\foo' withCRsasTwoByteString indexOfControlCharacterStartingAt:1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2098
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2099
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2100
    "Modified: / 21.7.1998 / 17:25:07 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2101
!
3668
76271941f044 added #indexOfControlCharacterStartingAt:
Claus Gittinger <cg@exept.de>
parents: 3656
diff changeset
  2102
8541
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2103
indexOfNonSeparator
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2104
    "return the index of the first non-whitespace character.
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2105
     return 0 if no non-separator was found"
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2106
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2107
    ^ self indexOfNonSeparatorStartingAt:1.
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2108
36f903267525 +indexOfNonSeparator
Claus Gittinger <cg@exept.de>
parents: 8525
diff changeset
  2109
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2110
     '    hello world' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2111
     '    ' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2112
     'a   ' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2113
     'abc' indexOfNonSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2114
     ' ' indexOfNonSeparator
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2115
     '' indexOfNonSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2116
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2117
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2118
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2119
indexOfNonSeparatorStartingAt:startIndex
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2120
    "return the index of the next non-whitespace character,
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2121
     starting the search at startIndex, searching forward;
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2122
     return 0 if no non-separator was found"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2123
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2124
    |start  "{ Class: SmallInteger }"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2125
     mySize "{ Class: SmallInteger }"|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2126
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2127
    start := startIndex.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2128
    mySize := self size.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2129
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2130
    start to:mySize do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2131
	(self at:index) isSeparator ifFalse:[^ index]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2132
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2133
    ^ 0
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2134
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2135
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2136
     '    hello world' indexOfNonSeparatorStartingAt:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2137
     '    ' indexOfNonSeparatorStartingAt:1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2138
     'a   ' indexOfNonSeparatorStartingAt:2
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2139
    "
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2140
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2141
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2142
     |s index1 index2|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2143
     s := '   foo    bar      baz'.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2144
     index1 := s indexOfNonSeparatorStartingAt:1.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2145
     index2 := s indexOfSeparatorStartingAt:index1.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2146
     s copyFrom:index1 to:index2 - 1
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2147
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2148
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2149
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2150
indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2151
    "return the index of the first whitespace character;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2152
     starting the search at the beginning, searching forward;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2153
     return 0 if no separator was found"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2154
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2155
    ^ self indexOfSeparatorStartingAt:1
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
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2158
     'hello world' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2159
     'helloworld' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2160
     'hello   ' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2161
     '   hello' indexOfSeparator
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2162
    "
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
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2165
indexOfSeparatorOrEndStartingAt:startIndex
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2166
    "return the index of the next whitespace character,
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2167
     starting the search at startIndex, searching forward;
19737
27fdf5f36ade #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19698
diff changeset
  2168
     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
  2169
     To extract the word, copy from startIndex to the returned index-1"
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2170
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2171
    |idx|
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2172
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2173
    idx := self indexOfSeparatorStartingAt:startIndex.
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2174
    idx == 0 ifTrue:[^ self size + 1].
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2175
    ^ idx.
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2176
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2177
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2178
     'hello world' indexOfSeparatorOrEndStartingAt:3
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2179
     ' hello world' indexOfSeparatorOrEndStartingAt:3
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2180
     'hello world ' indexOfSeparatorOrEndStartingAt:3
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2181
     'hello world ' indexOfSeparatorOrEndStartingAt:6
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2182
     'hello world ' indexOfSeparatorOrEndStartingAt:7
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2183
     'helloworld ' indexOfSeparatorOrEndStartingAt:7
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2184
     'helloworld' indexOfSeparatorOrEndStartingAt:7
19737
27fdf5f36ade #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19698
diff changeset
  2185
     'helloworld' indexOfSeparatorStartingAt:7
15912
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2186
    "
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2187
!
13b6b4a8109d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15890
diff changeset
  2188
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2189
indexOfSeparatorStartingAt:startIndex
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2190
    "return the index of the next whitespace character,
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2191
     starting the search at startIndex, searching forward;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2192
     return 0 if no separator was found"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2193
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2194
    |start  "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2195
     mySize "{ Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2196
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2197
    start := startIndex.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2198
    mySize := self size.
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
    start to:mySize do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2201
	(self at:index) isSeparator ifTrue:[^ index]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2202
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2203
    ^ 0
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2204
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2205
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2206
     'hello world' indexOfSeparatorStartingAt:3
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2207
     ' hello world' indexOfSeparatorStartingAt:3
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2208
     'hello world ' indexOfSeparatorStartingAt:3
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2209
     'hello world ' indexOfSeparatorStartingAt:6
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2210
     'hello world ' indexOfSeparatorStartingAt:7
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2211
     'helloworld ' indexOfSeparatorStartingAt:7
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2212
     'helloworld' indexOfSeparatorStartingAt:7
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2213
    "
2519
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2214
!
07674cea76dd allow escaping a * when doing a match
Claus Gittinger <cg@exept.de>
parents: 2452
diff changeset
  2215
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2216
lastIndexOfSeparator
14150
e13160aa321a comment/format in: #lastIndexOfSeparator
Claus Gittinger <cg@exept.de>
parents: 14141
diff changeset
  2217
    "return the last index of a whitespace character (space or tab).
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2218
     (i.e. start the search at the end and search backwards);
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2219
     Returns 0 if no separator is found."
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2220
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2221
    ^ self lastIndexOfSeparatorStartingAt:(self size)
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2222
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2223
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2224
     'hello world' lastIndexOfSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2225
     'helloworld' lastIndexOfSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2226
     'hel lo wor ld' lastIndexOfSeparator
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2227
     'hel   ' lastIndexOfSeparator 6
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2228
    "
14150
e13160aa321a comment/format in: #lastIndexOfSeparator
Claus Gittinger <cg@exept.de>
parents: 14141
diff changeset
  2229
e13160aa321a comment/format in: #lastIndexOfSeparator
Claus Gittinger <cg@exept.de>
parents: 14141
diff changeset
  2230
    "Modified (comment): / 01-06-2012 / 13:10:30 / cg"
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2231
!
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2232
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2233
lastIndexOfSeparatorStartingAt:startIndex
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2234
    "return the index of the previous whitespace character,
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2235
     starting the search at startIndex (and searching backwards);
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2236
     returns 0 if no separator was found"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2237
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2238
    |start  "{ Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2239
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2240
    start := startIndex.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2241
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2242
    start to:1 by:-1 do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2243
	(self at:index) isSeparator ifTrue:[^ index]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2244
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2245
    ^ 0
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2246
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2247
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2248
     'hello world' lastIndexOfSeparatorStartingAt:3
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2249
     'hello world' lastIndexOfSeparatorStartingAt:7
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2250
     'helloworld' lastIndexOfSeparatorStartingAt:7
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2251
     ' helloworld' lastIndexOfSeparatorStartingAt:7
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  2252
    "
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2253
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2254
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2255
!CharacterArray methodsFor:'comparing'!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2256
6742
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2257
< aString
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2258
    "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
  2259
     receiver is greater than the argument. Otherwise return false.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2260
     This comparison is based on the elements ascii code -
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2261
     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
  2262
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2263
    |mySize    "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2264
     otherSize "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2265
     n         "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2266
     c1 c2|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2267
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2268
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2269
    otherSize := aString string size.
6742
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2270
    n := mySize min:otherSize.
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2271
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2272
    1 to:n do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2273
	c1 := self at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2274
	c2 := aString at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2275
	(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
  2276
    ].
292775fda600 avoid endless recursion when comparing int < string
Claus Gittinger <cg@exept.de>
parents: 6655
diff changeset
  2277
    ^ mySize < otherSize
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2278
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2279
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2280
= aString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2281
    "Compare the receiver with the argument and return true if the
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2282
     receiver is equal to the argument. Otherwise return false.
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2283
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  2284
     This compare does NOT ignore case differences,
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2285
     therefore 'foo' = 'Foo' will return false.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2286
     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
  2287
14137
1eb1b4a3f364 Inherit from UninterpretedBytes instead of ByteArray
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
  2288
    |mySize    "{ Class: SmallInteger }"|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2289
5963
23462e06dcff compare with Texts fixed (should compare equal if strings are)
Claus Gittinger <cg@exept.de>
parents: 5946
diff changeset
  2290
    (aString isString or:[aString species == self species]) ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2291
	^ false
5963
23462e06dcff compare with Texts fixed (should compare equal if strings are)
Claus Gittinger <cg@exept.de>
parents: 5946
diff changeset
  2292
    ].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2293
    mySize := self size.
14137
1eb1b4a3f364 Inherit from UninterpretedBytes instead of ByteArray
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
  2294
    mySize ~~ (aString size) ifTrue:[^ false].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2295
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2296
    1 to:mySize do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2297
	(self at:index) = (aString at:index) ifFalse:[^ false].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2298
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2299
    ^ true
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2300
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2301
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2302
     'foo' = 'Foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2303
     'foo' = 'bar'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2304
     'foo' = 'foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2305
     'foo' = 'foo' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2306
     'foo' asText = 'foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2307
     'foo' asText = 'foo' asText
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2308
    "
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2309
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2310
    "Modified: 22.4.1996 / 15:53:58 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2311
!
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2312
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  2313
> aString
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2314
    "Compare the receiver with the argument and return true if the
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2315
     receiver is greater than the argument. Otherwise return false.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2316
     This comparison is based on the elements ascii code -
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2317
     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
  2318
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2319
    |mySize    "{ Class: SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2320
     otherSize "{ Class: SmallInteger }"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2321
     n         "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2322
     c1 c2|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2323
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2324
    mySize := self size.
5929
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2325
    otherSize := aString string size.
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2326
    n := mySize min:otherSize.
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2327
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2328
    1 to:n do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2329
	c1 := self at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2330
	c2 := aString at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2331
	(c1 == c2 or:[c1 = c2]) ifFalse:[^ c1 > c2].
5929
a3d2e7aaa3a3 added #compareCaselessWith:
Claus Gittinger <cg@exept.de>
parents: 5898
diff changeset
  2332
    ].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2333
    ^ mySize > otherSize
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2334
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2335
    "Modified: 22.4.1996 / 15:55:00 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2336
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2337
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2338
after:aString
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2339
    "Compare the receiver with the argument and return true if the
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2340
     receiver should come after the argument in a sorted list.
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2341
     Otherwise return false.
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2342
     NOTE: The comparison should be language specific, depending on the value of
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2343
	    LC_COLLATE, which is initialized from the environment.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2344
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2345
	    Currently it is for Strings, but not for UnicodeStrings...
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2346
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2347
     STUPID:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2348
	#after has a completely different meaning in SeqColl ..."
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2349
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2350
    ^ (self compareCollatingWith:aString) > 0
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2351
!
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2352
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2353
compareAsVersionNumberWith:aStringOrCollection
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2354
    "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
  2355
     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
  2356
     Compare as version numbers in the form a.b.c... ."
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2357
20374
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2358
    |rev1 rev2 removeTrailingZerosBlock trailingZerosCount|
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2359
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2360
    rev1 := self asCollectionOfSubstringsSeparatedBy:$..
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2361
    aStringOrCollection isString ifTrue:[
20374
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2362
        rev2 := aStringOrCollection asCollectionOfSubstringsSeparatedBy:$..
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2363
    ].
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2364
    rev1 := rev1 collect:[:each| each asInteger].
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2365
    rev2 := rev2 collect:[:each| each asInteger].
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2366
20374
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2367
    removeTrailingZerosBlock := 
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2368
        [:numbers |
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2369
            trailingZerosCount := 0.
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2370
            numbers reversed doWithExit:[:each :exit |
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2371
                each == 0 ifTrue:[
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2372
                    trailingZerosCount := trailingZerosCount + 1.
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2373
                ] ifFalse:[
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2374
                    exit value:nil.
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2375
                ].
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2376
            ].
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2377
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2378
            trailingZerosCount > 0 ifTrue:[
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2379
                numbers copyTo:numbers size - trailingZerosCount
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2380
            ] ifFalse:[
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2381
                numbers
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2382
            ]
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2383
        ].
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2384
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2385
    rev1 := removeTrailingZerosBlock value:rev1.
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2386
    rev2 := removeTrailingZerosBlock value:rev2.
b57c60bfaf71 #BUGFIX by sr
sr
parents: 20258
diff changeset
  2387
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2388
    ^ rev1 compareWith:rev2
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2389
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2390
   "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2391
     self assert:('1' compareAsVersionNumberWith:'2') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2392
     self assert:('2' compareAsVersionNumberWith:'1') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2393
     self assert:('1.1' compareAsVersionNumberWith:'2.1.2') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2394
     self assert:('2.1' compareAsVersionNumberWith:'1.2.3') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2395
     self assert:('1' compareAsVersionNumberWith:'1.1') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2396
     self assert:('1.1' compareAsVersionNumberWith:'1') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2397
     self assert:('1.1' compareAsVersionNumberWith:'1.2') < 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2398
     self assert:('1.10' compareAsVersionNumberWith:'1.2') > 0.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2399
     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
  2400
     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
  2401
     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
  2402
     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
  2403
     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
  2404
     self assert:('1.2.3.4' compareAsVersionNumberWith:#(1 2 3 4)) = 0.
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2405
    "
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2406
!
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2407
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2408
compareCaselessWith:aString
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2409
    "Compare the receiver against the argument, ignoreing case.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2410
     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
  2411
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2412
     This comparison is based on the elements ascii code -
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2413
     i.e. national characters are NOT treated specially.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2414
     'foo' compareWith: 'Foo' will return 0"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2415
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2416
    |mySize    "{ Class: SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2417
     otherSize "{ Class: SmallInteger }"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2418
     n         "{ Class: SmallInteger }"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2419
     c1 c2|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2420
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2421
    mySize := self size.
5739
4fd3be7ccc75 oops some relational ops did accept a non-string arg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  2422
    otherSize := aString string size.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2423
    n := mySize min:otherSize.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2424
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2425
    1 to:n do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2426
	c1 := (self at:index) asLowercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2427
	c2 := (aString at:index) asLowercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2428
	c1 > c2 ifTrue:[^ 1].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2429
	c1 < c2 ifTrue:[^ -1].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2430
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2431
    mySize > otherSize ifTrue:[^ 1].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2432
    mySize < otherSize ifTrue:[^ -1].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2433
    ^ 0
1252
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2434
105280fd8d72 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1250
diff changeset
  2435
    "Modified: 22.4.1996 / 15:56:07 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2436
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2437
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2438
compareCollatingWith:aString
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2439
    "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
  2440
     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
  2441
     The comparison is language specific, depending on the value of
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2442
     LC_COLLATE, which is in the shell environment."
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2443
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2444
    "TODO not yet defined for unicode"
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2445
    <resource: #todo>
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2446
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2447
    |s|
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2448
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2449
    (s := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2450
	^ s compareCollatingWith:aString
14660
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2451
    ].
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2452
    ^ self compareWith:aString
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2453
!
78d3fa5b75e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14652
diff changeset
  2454
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2455
compareWith:aString
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2456
    "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
  2457
     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
  2458
     This comparison is based on the elements' codepoints -
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2459
     i.e. upper/lowercase & national characters are NOT treated specially.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2460
     'foo' compareWith: 'Foo' will return 1.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2461
     while 'foo' sameAs:'Foo' will return true"
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2462
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2463
    |s|
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2464
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2465
    s := self string.
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2466
    s ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2467
	^ s compareWith:aString string.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2468
    ].
15814
977883b1091b class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15788
diff changeset
  2469
    ^ super compareWith:aString string.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2470
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2471
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2472
endsWith:aStringOrCharacter
16175
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2473
    "return true, if the receiver ends with something, aStringOrCharacter.
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2474
     If aStringOrCharacter is empty, true is returned"
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2475
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2476
    |s|
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2477
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2478
    (s := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2479
	^ s endsWith:aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2480
    ].
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2481
    (self size > 0 and:[aStringOrCharacter isCharacter]) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2482
	^ self last = aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2483
    ].
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2484
    ^ super endsWith:aStringOrCharacter
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2485
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2486
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2487
     'hello world' endsWith:'world'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2488
     'hello world' asText allBold endsWith:'world'
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2489
     'hello world' endsWith:''
16175
05de577feb25 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16051
diff changeset
  2490
     'hello world' asText allBold endsWith:''
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2491
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2492
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2493
    "Modified: 12.5.1996 / 15:49:18 / cg"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2494
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2495
11838
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2496
hammingDistanceTo:aString
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2497
    "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
  2498
     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
  2499
     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
  2500
     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
  2501
     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
  2502
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2503
    self assert:(aString size == self size).
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2504
    ^ 1 to:self size count:[:idx | (self at:idx) ~= (aString at:idx)]
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2505
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2506
    "
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2507
     'roses' hammingDistanceTo:'toned'
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2508
    "
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2509
!
0a3d38e446e4 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11828
diff changeset
  2510
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2511
hash
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2512
    "return an integer useful as a hash-key"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2513
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2514
    "/ whenever changing, also care for String>>hash.
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2515
    "/ immediately after any change, execute (maybe in a debugger):
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2516
    "/      Set allSubInstancesDo:[:s | s rehash]
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2517
    ^ self hash_fnv1a
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2518
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2519
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2520
     'a' hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2521
     'a' asUnicode16String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2522
     'a' asUnicode32String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2523
     'aa' hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2524
     'aa' asUnicode16String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2525
     'aa' asUnicode32String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2526
     'ab' hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2527
     'ab' asUnicode16String hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2528
     'ab' asUnicode32String hash
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2529
     'ab' hash
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2530
     'ab' asArray hash
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2531
    "
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2532
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2533
    "
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2534
	|syms ms|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2535
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2536
	syms := Symbol allInstances.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2537
	Transcript show:'syms: '; showCR:syms size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2538
	Transcript show:'sdbm hashes: '; showCR:(syms collect:[:s| s hash]) asSet size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2539
	Transcript show:'dragonBook hashes: '; showCR:(syms collect:[:s| s hash_dragonBook]) asSet size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2540
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2541
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2542
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2543
		syms do:[:each| each hash].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2544
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2545
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2546
	Transcript show:'sdbm hash: '; showCR:ms.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2547
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2548
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2549
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2550
		syms do:[:each| each hash_dragonBook].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2551
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2552
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2553
	Transcript show:'dragonBook: '; showCR:ms.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2554
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2555
	syms := syms collect:[:each| each asUnicode16String].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2556
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2557
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2558
		syms do:[:each| each hash].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2559
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2560
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2561
	Transcript show:'unicode sdbm hash: '; showCR:ms.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2562
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2563
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2564
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2565
		syms do:[:each| each hash_dragonBook].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2566
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2567
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2568
	Transcript show:'unicode dragonBook:'; showCR:ms.
14641
507dd4be1798 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14637
diff changeset
  2569
    "
507dd4be1798 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14637
diff changeset
  2570
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2571
    "Modified: / 26-12-2011 / 14:09:07 / cg"
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2572
!
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2573
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2574
hash_dragonBook
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2575
    "return an integer useful as a hash-key"
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2576
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2577
    |h g|
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2578
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2579
    "/
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2580
    "/ this is the dragon-book algorithm
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2581
    "/
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2582
    h := 0.
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2583
    self reverseDo:[:char |
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2584
"/ 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
  2585
"/        h := (h bitShift:4) + char asciiValue.
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2586
	h := (h bitShift:4).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2587
	h := h + char codePoint.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2588
	h := h bitAnd:16rFFFFFFFF.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2589
	g := (h bitAnd: 16rF0000000).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2590
	g ~~ 0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2591
	    h := h bitXor:(g bitShift:-24).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2592
	    h := h bitXor:g.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2593
	].
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2594
    ].
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2595
    "/
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2596
    "/ multiply by large prime to spread values
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2597
    "/ This speeds up Set and Dictionary by a factor of 10!!
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2598
    "/
14137
1eb1b4a3f364 Inherit from UninterpretedBytes instead of ByteArray
Stefan Vogel <sv@exept.de>
parents: 14122
diff changeset
  2599
    h := h times:31415821.
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2600
    ^ h
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2601
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2602
    "
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2603
     'a' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2604
     'a' asUnicode16String hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2605
     'aa' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2606
     'aa' asUnicode16String hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2607
     'ab' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2608
     'ab' asUnicode16String hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2609
     'ab' hash
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  2610
     'ab' asArray hash
10698
08bfe7364c0f oops: Unicode16String-hash returned different value from
sr
parents: 10671
diff changeset
  2611
    "
13879
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2612
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2613
    "Created: / 26-12-2011 / 13:46:06 / cg"
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2614
!
Claus Gittinger <cg@exept.de>
parents: 13840
diff changeset
  2615
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2616
hash_fnv1a
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2617
    "return an integer useful as a hash-key.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2618
     This method uses the fnv-1a algorithm
19743
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2619
     (which is actually a very good one).
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2620
     Attention: stops when a 0-codepoint is encountered
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2621
		(for compatibility with the hash used by the VM)
19743
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2622
     Also: on 64bit CPUs, only small 4-byte hashvalues are returned,
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2623
		(so hash values are independent from the architecture)"
19743
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2624
b5c295a51c56 #BUGFIX by cg
Claus Gittinger <cg@exept.de>
parents: 19737
diff changeset
  2625
    |h byte|
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2626
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2627
    h := 2166136261.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2628
    self do:[:eachChar |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2629
	byte := eachChar codePoint.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2630
	byte == 0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2631
	    "/ stop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2632
	    ^ (h bitXor: (h >> 30)) bitAnd: 16r3FFFFFFF.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2633
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2634
	h := h bitXor:byte.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2635
	h := (h * 16777619) bitAnd:16rFFFFFFFF.
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2636
    ].
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2637
    "/ make sure, it fits into a smallInt
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2638
    h := (h bitXor: (h >> 30)) bitAnd: 16r3FFFFFFF.
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2639
    ^ h
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2640
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2641
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2642
     'abc' hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2643
     'abc' asUnicode16String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2644
     'abc' asUnicode32String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2645
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2646
     'foofooHelloWorld' hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2647
     'foofooHelloWorld' asUnicode16String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2648
     'foofooHelloWorld' asUnicode32String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2649
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2650
     'blablaHelloWorld' hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2651
     'blablaHelloWorld' asUnicode16String hash_fnv1a
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2652
     'blablaHelloWorld' asUnicode32String hash_fnv1a
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2653
    "
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2654
!
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2655
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2656
hash_java
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2657
    "return an integer useful as a hash-key.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2658
     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
  2659
     the java virtual machine
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2660
     (which is actually not a very good one)."
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2661
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2662
    |h|
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2663
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2664
    h := 0.
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2665
    self do:[:eachChar |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2666
	h := (h * 31) + (eachChar codePoint).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2667
	h := h bitAnd:16rFFFFFFFF.
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2668
    ].
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2669
    ^ h
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2670
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2671
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2672
     'abc' hash_java
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2673
     'foofooHelloWorld' hash_java
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2674
     'blablaHelloWorld' hash_java
16887
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2675
    "
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2676
!
8e30e6a52a64 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16875
diff changeset
  2677
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2678
hash_sdbm
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2679
    "return an integer useful as a hash-key.
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2680
     This method implements the sdbm algorithm."
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2681
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2682
    |h|
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2683
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2684
    "/
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2685
    "/ this is the sdbm algorithm
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2686
    "/
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2687
    h := 0.
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2688
    self do:[:char |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2689
	h := (65599 times:h) plus:char codePoint.
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2690
    ].
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  2691
    ^ h
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2692
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2693
    "
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2694
     'a' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2695
     'a' asUnicode16String hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2696
     'aa' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2697
     'aa' asUnicode16String hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2698
     'ab' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2699
     'ab' asUnicode16String hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2700
     'ab' hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2701
     'ab' asArray hash
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2702
    "
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2703
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2704
    "
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2705
	|syms ms|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2706
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2707
	syms := Symbol allInstances.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2708
	Transcript show:'syms: '; showCR:syms size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2709
	Transcript show:'sdbm hashes: '; showCR:(syms collect:[:s| s hash]) asSet size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2710
	Transcript show:'dragonBook hashes: '; showCR:(syms collect:[:s| s hash_dragonBook]) asSet size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2711
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2712
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2713
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2714
		syms do:[:each| each hash].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2715
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2716
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2717
	Transcript show:'sdbm hash: '; showCR:ms.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2718
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2719
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2720
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2721
		syms do:[:each| each hash_dragonBook].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2722
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2723
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2724
	Transcript show:'dragonBook: '; showCR:ms.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2725
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2726
	syms := syms collect:[:each| each asUnicode16String].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2727
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2728
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2729
		syms do:[:each| each hash].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2730
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2731
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2732
	Transcript show:'unicode sdbm hash: '; showCR:ms.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2733
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2734
	ms := Time millisecondsToRun:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2735
	    10 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2736
		syms do:[:each| each hash_dragonBook].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2737
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2738
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2739
	Transcript show:'unicode dragonBook:'; showCR:ms.
16898
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2740
    "
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2741
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2742
    "Modified: / 26-12-2011 / 14:09:07 / cg"
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2743
!
0663e6b0d177 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16887
diff changeset
  2744
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2745
levenshteinTo:aString
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2746
    "return the levenshtein distance to the argument, aString;
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2747
     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
  2748
     made to get aString from the receiver.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2749
     See IEEE transactions on Computers 1976 Pg 172 ff."
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2750
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2751
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2752
     in the following, we assume that ommiting a character
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2753
     is less of an error than inserting an extra character.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2754
     Therefore the different insertion (i) and deletion (d) values.
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2755
	s: substitution weight (4)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2756
	k: keyboard weight (k) (typing a nearby key) - or nil (then use s)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2757
	c: case weight (4)                           - or nil (then use s)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2758
	e: exchange weight (8)                       - or nil (then use s*2)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2759
	i: insertion of extra character weight (2)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2760
	d: delete of a character weight (6)
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2761
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2762
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2763
    ^ StringUtilities
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2764
	    levenshteinDistanceFrom:self
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2765
	    to:aString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2766
	    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
  2767
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2768
    "
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2769
     'computer' levenshteinTo:'computer'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2770
     'cOmputer' levenshteinTo:'computer'
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2771
     'cOmpuTer' levenshteinTo:'computer'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2772
     'cimputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2773
     'cumputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2774
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2775
     'cmputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2776
     'coomputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2777
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2778
     'ocmprt' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2779
     'computer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2780
     'ocmputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2781
     'cmputer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2782
     'computer' levenshteinTo:'cmputer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2783
     'Computer' levenshteinTo:'computer'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2784
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2785
     'compiter' levenshteinTo:'computer'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2786
     'compoter' levenshteinTo:'computer'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2787
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  2788
     'comptuer' levenshteinTo:'computer'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2789
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2790
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2791
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2792
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
  2793
    "parametrized levenshtein.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2794
     return the levenshtein distance to the argument, aString;
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2795
     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
  2796
     made to get aString from the receiver.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2797
     The arguments are the costs for
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2798
	s:substitution,
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2799
	k:keyboard type (substitution),
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2800
	c:case-change,
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2801
	i:insertion
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2802
	d:deletion
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2803
     of a character.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2804
     See IEEE transactions on Computers 1976 Pg 172 ff"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2805
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2806
    ^ StringUtilities
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2807
	    levenshteinDistanceFrom:self
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2808
	    to:aString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2809
	    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
  2810
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2811
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2812
sameAs:aString
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2813
    "Compare the receiver with the argument like =, but ignore case differences.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2814
     Return true or false."
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2815
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2816
    |mySize "{ Class: SmallInteger }"
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2817
     otherSize c1 c2|
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  2818
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2819
    self == aString ifTrue:[^ true].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2820
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2821
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2822
    otherSize := aString string size.
18884
6b5030151c08 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18771
diff changeset
  2823
    mySize ~~ otherSize ifTrue:[^ false].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2824
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2825
    1 to:mySize do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2826
	c1 := self at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2827
	c2 := aString at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2828
	c1 ~~ c2 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2829
	    (c1 sameAs:c2) ifFalse:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2830
	]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2831
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2832
    ^ true
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2833
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2834
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2835
     'foo' sameAs: 'Foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2836
     'foo' sameAs: 'bar'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2837
     'foo' sameAs: 'foo'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2838
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2839
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2840
    "Modified: 22.4.1996 / 15:56:17 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2841
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2842
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2843
sameAs:aString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2844
    "Compare the receiver with the argument.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2845
     If caseSensitive is false, this is the same as #sameAs:,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2846
     if false, this is the same as #=."
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2847
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2848
    caseSensitive ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2849
	^ self sameAs:aString
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2850
    ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2851
    ^ self = aString
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2852
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2853
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2854
     'foo' sameAs:'Foo' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2855
     'foo' sameAs:'foo' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2856
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2857
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2858
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2859
sameAs:aString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  2860
    <resource: #obsolete>
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2861
    "Compare the receiver with the argument.
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2862
     If ignoreCase is true, this is the same as #sameAs:,
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2863
     if false, this is the same as #=."
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2864
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2865
    ignoreCase ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2866
	^ self sameAs:aString
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2867
    ].
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2868
    ^ self = aString
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2869
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2870
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2871
     'foo' sameAs:'Foo' ignoreCase:false
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2872
     'foo' sameAs:'foo' ignoreCase:true
5242
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2873
    "
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2874
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2875
!
0da078635576 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 5230
diff changeset
  2876
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2877
sameCharacters:aString
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2878
    "count & return the number of characters which are the same
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2879
     (ignoring case and emphasis) in the receiver and the argument, aString."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2880
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2881
    |n "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2882
     c1 c2 cnt|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2883
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2884
    n := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2885
    n := n min:(aString string size).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2886
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2887
    cnt := 0.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2888
    1 to:n do:[:index |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2889
	c1 := self at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2890
	c2 := aString at:index.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2891
	((c1 == c2)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2892
	or:[c1 asLowercase = c2 asLowercase]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2893
	    cnt := cnt + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2894
	]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2895
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2896
    ^ cnt
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2897
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2898
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2899
     'foobarbaz' sameCharacters: 'foo'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2900
     'foobarbaz' sameCharacters: 'Foo'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2901
     'foobarbaz' sameCharacters: 'baz'
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  2902
    "
5510
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2903
!
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2904
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2905
sameEmphasisAs:aStringOrText
17215
0906efa5645d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17213
diff changeset
  2906
    "compare the receiver's and the argument's emphasis"
5510
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2907
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2908
    ^ self emphasis = aStringOrText emphasis
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2909
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2910
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2911
     'hello' asText sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2912
     'hello' asText sameEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2913
     'hello' asText allBold sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2914
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allBold
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2915
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allItalic
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2916
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2917
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  2918
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  2919
sameStringAndEmphasisAs:aStringOrText
5739
4fd3be7ccc75 oops some relational ops did accept a non-string arg
Claus Gittinger <cg@exept.de>
parents: 5732
diff changeset
  2920
    "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
  2921
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2922
    aStringOrText isString ifFalse:[^ false].
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2923
    (self string = aStringOrText string) ifFalse:[^ false].
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2924
    self hasChangeOfEmphasis = aStringOrText hasChangeOfEmphasis ifFalse:[^ false].
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2925
    ^ self emphasis = aStringOrText emphasis
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2926
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2927
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2928
     'hello' asText sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2929
     'hello' asText sameEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2930
     'hello' asText allBold sameEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2931
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2932
     'hello' asText allBold sameEmphasisAs: 'fooba' asText allItalic
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2933
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2934
     'hello' sameEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2935
     'hello' sameEmphasisAs: 'hello' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2936
     'hello' sameEmphasisAs: 'fooba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2937
     'hello' sameEmphasisAs: 'fooba' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2938
     'hello' sameEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2939
     'hello' sameEmphasisAs: 'fooba' asText allItalic
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2940
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2941
     'hello' asText sameStringAndEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2942
     'hello' asText sameStringAndEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2943
     'hello' asText allBold sameStringAndEmphasisAs: 'hello'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2944
     'hello' asText allBold sameStringAndEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2945
     'hello' asText allBold sameStringAndEmphasisAs: 'fooba' asText allItalic
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2946
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2947
     'hello' sameStringAndEmphasisAs: 'hello' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2948
     'hello' sameStringAndEmphasisAs: 'hello' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2949
     'hello' sameStringAndEmphasisAs: 'fooba'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2950
     'hello' sameStringAndEmphasisAs: 'fooba' asText
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2951
     'hello' sameStringAndEmphasisAs: 'fooba' asText allBold
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  2952
     'hello' sameStringAndEmphasisAs: 'fooba' asText allItalic
5510
a261b8f5d66f moved #sameEmphasisAs: and #sameStringAndEmphasisAs:
Claus Gittinger <cg@exept.de>
parents: 5487
diff changeset
  2953
    "
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2954
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2955
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2956
spellAgainst: aString
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2957
    "return an integer between 0 and 100 indicating how similar
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2958
     the argument is to the receiver.  No case conversion is done.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2959
     This algorithm is much simpler (but also less exact) than the
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2960
     levenshtein distance. Experiment which is better for your
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2961
     application."
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2962
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2963
    | i1     "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2964
      i2     "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2965
      next1  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2966
      next2  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2967
      size1  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2968
      size2  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2969
      score  "{ Class: SmallInteger }"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2970
      maxLen "{ Class: SmallInteger }" |
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2971
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2972
    size1 := self size.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2973
    size2 := aString size.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2974
    maxLen := size1 max:size2.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2975
    score := 0.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2976
    i1 := i2 := 1.
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2977
    [i1 <= size1 and: [i2 <= size2]] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2978
	next1 := i1 + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2979
	next2 := i2 + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2980
	(self at:i1) == (aString at:i2) ifTrue: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2981
	    score := score+1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2982
	    i1 := next1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2983
	    i2 := next2
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2984
	] ifFalse: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2985
	    (i2 < size2 and: [(self at:i1) == (aString at:next2)]) ifTrue: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2986
		i2 := next2
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2987
	    ] ifFalse: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2988
		(i1 < size1 and: [(self at:next1) == (aString at:i2)]) ifTrue: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2989
		    i1 := next1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2990
		] ifFalse: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2991
		    i1 := next1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2992
		    i2 := next2
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2993
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2994
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  2995
	]
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2996
    ].
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2997
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2998
    score == maxLen ifTrue: [^ 100].
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  2999
    ^ 100 * score // maxLen
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3000
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3001
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3002
     'Smalltalk' spellAgainst: 'Smalltlak'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3003
     'Smalltalk' spellAgainst: 'smalltlak'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3004
     'Smalltalk' spellAgainst: 'smalltalk'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3005
     'Smalltalk' spellAgainst: 'smalltlk'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3006
     'Smalltalk' spellAgainst: 'Smalltolk'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3007
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3008
!
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3009
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3010
startsWith:aStringOrCharacter
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3011
    "return true, if the receiver starts with something, aStringOrCharacter.
17371
cbb00370b456 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17367
diff changeset
  3012
     If the argument is empty, true is returned.
cbb00370b456 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17367
diff changeset
  3013
     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
  3014
     which are both inconsistent w.r.t. an empty argument."
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3015
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3016
    |s|
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3017
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3018
    aStringOrCharacter isCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3019
	^ (self size > 0) and:[ (self at:1) == aStringOrCharacter ]
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3020
    ].
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3021
    (s := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3022
	^ s startsWith:aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3023
    ].
16553
d2f7a990d66b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16473
diff changeset
  3024
    ^ super startsWith:aStringOrCharacter
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3025
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3026
    "
17364
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3027
     'abcde' startsWith:#($a $b $c)
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3028
     'abcde' startsWith:'abc'
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3029
     'abcd' startsWith:'abcde'
62b006f570cb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17241
diff changeset
  3030
     'abcde' startsWith:'abd'
11861
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3031
     'hello world' startsWith:'hello'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3032
     'hello world' asText allBold startsWith:'hello'
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3033
     'hello world' asText allBold startsWith:''
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3034
    "
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3035
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3036
    "Created: 12.5.1996 / 15:46:40 / cg"
99bf865f7b78 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11839
diff changeset
  3037
    "Modified: 12.5.1996 / 15:49:24 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3038
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3039
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3040
!CharacterArray methodsFor:'converting'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3041
11881
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3042
asAsciiZ
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3043
    "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
  3044
     with an additional 0-character. Otherwise return the receiver. This is sometimes
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3045
     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
  3046
     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
  3047
     strings are not."
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3048
12658
2e9c209be0cc changed: #asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 12615
diff changeset
  3049
    (self notEmpty and:[self last codePoint == 0]) ifTrue:[^ self ].
11881
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3050
    ^ self copyWith:(Character value:0).
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3051
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3052
    "
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3053
     'abc' asAsciiZ
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3054
     'abc' asWideString asAsciiZ
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3055
    "
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3056
!
23c9e1cecd05 +asAsciiZ
Claus Gittinger <cg@exept.de>
parents: 11865
diff changeset
  3057
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3058
asByteArray
15936
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3059
    "depending on the size of the characters in the receiver,
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3060
     return a byteArray containing single-, double- or even 4-bytewise values.
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3061
     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
  3062
     size required for the largest character.
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3063
     Attention: The bytes are in native byte order.
15936
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3064
     Caveat: better use utf8Encoded, to get reproducable results"
96c6758087c1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15912
diff changeset
  3065
14555
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3066
    |bytes sz bytesPerCharacter idx str|
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3067
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3068
    str := self string.
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3069
    str ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3070
	"/ for text and other wrappers
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3071
	^ str asByteArray
13611
ba8c7372218a variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 13524
diff changeset
  3072
    ].
ba8c7372218a variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 13524
diff changeset
  3073
ba8c7372218a variable renamed in: #inspector2TabBytes
Claus Gittinger <cg@exept.de>
parents: 13524
diff changeset
  3074
    "/ for real strings, a fallback
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3075
    sz := self size.
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  3076
    bytesPerCharacter := self bytesPerCharacter.
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3077
    bytes := ByteArray new:(sz * bytesPerCharacter).
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3078
    idx := 1.
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3079
    self do:[:char |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3080
	|code|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3081
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3082
	code := char codePoint.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3083
	bytesPerCharacter == 2 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3084
	    bytes unsignedInt16At:idx put:code
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3085
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3086
	    bytesPerCharacter == 4 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3087
		bytes unsignedInt32At:idx put:code
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3088
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3089
		bytes at:idx put:code
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3090
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3091
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3092
	idx := idx + bytesPerCharacter.
13524
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3093
    ].
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3094
    ^ bytes
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3095
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3096
    "Created: / 27-07-2011 / 00:56:17 / cg"
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3097
!
f625be6d274e added: #asByteArray
Claus Gittinger <cg@exept.de>
parents: 13520
diff changeset
  3098
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3099
asByteArrayMSB:msb
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3100
    "depending on the size of the characters in the receiver,
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3101
     return a byteArray containing single-, double- or even 4-bytewise values.
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3102
     The size of the returned byteArray will be the strings size multiplied by the
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3103
     size required for the largest character.
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3104
     Caveat: better use utf8Encoded, to get reproducable results"
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3105
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3106
    |ba|
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3107
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3108
    ba := self asByteArray. "/ native order
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3109
    UninterpretedBytes isBigEndian ~~ msb ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3110
	ba swapBytes
19233
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3111
    ].
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3112
    ^ ba
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3113
!
5ef1a009d69d #FEATURE
matilk
parents: 19171
diff changeset
  3114
20480
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3115
asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3116
    "return a Filename with pathname taken from the receiver.
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3117
     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
  3118
     '.' components etc."
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3119
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3120
    ^ self asFilename asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3121
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3122
    "on windows:
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3123
     'c:\foo\bar' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3124
     'c:\foo\bar\' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3125
     'c:\foo\bar\..\baz' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3126
     'c:\foo\bar\..\baz\.' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3127
     'c:\foo\bar' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3128
     'c:\foo\bar\' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3129
     'c:\foo\bar\..\baz' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3130
     'c:\foo\bar\..\baz\.' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3131
    
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3132
    on unix:
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3133
     '/foo/bar' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3134
     '/foo/bar/' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3135
     '/foo/bar/../baz' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3136
     '/foo/bar/../baz/.' asFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3137
     '/foo/bar' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3138
     '/foo/bar/' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3139
     '/foo/bar/../baz' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3140
     '/foo/bar/../baz/.' asCanonicalizedFilename
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3141
    "
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3142
!
cf0dabebf4dc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20374
diff changeset
  3143
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3144
asCollectionOfLines
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3145
    "return a collection containing the lines (separated by cr)
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3146
     of the receiver. If multiple cr's occur in a row, the result will
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3147
     contain empty strings.
14456
d7c3e67647f1 comment/format in: #asCollectionOfLines
Claus Gittinger <cg@exept.de>
parents: 14455
diff changeset
  3148
     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
  3149
     See also #asCollectionOfLinesWithReturn
d7c3e67647f1 comment/format in: #asCollectionOfLines
Claus Gittinger <cg@exept.de>
parents: 14455
diff changeset
  3150
     (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
  3151
      this method and we did not want to risk any incompatibilities)"
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3152
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3153
    ^ self asCollectionOfSubstringsSeparatedBy:Character cr.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3154
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3155
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3156
     '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
  3157
     '1 one\\\\2 two\3 three' withCRs asCollectionOfLines
20182
f8625bd2a98c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20160
diff changeset
  3158
f8625bd2a98c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20160
diff changeset
  3159
     ('foo \r\nbar\nbaz\t\r\n\r\nbla' printf:#())
f8625bd2a98c #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20160
diff changeset
  3160
        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
  3161
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3162
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3163
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3164
asCollectionOfLinesWithReturn
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3165
    "return a collection containing the lines (separated by cr)
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3166
     of the receiver. If multiple cr's occur in a row, the result will
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3167
     contain empty strings."
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3168
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3169
    |lines|
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3170
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3171
    lines := self asCollectionOfSubstringsSeparatedBy:Character cr.
18194
bec89cec5d13 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18181
diff changeset
  3172
    (lines notEmpty and:[lines last isEmpty]) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3173
	^ lines copyButLast:1
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3174
    ].
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3175
    ^ lines
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3176
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3177
    "
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3178
     '1\2\3' withCRs asCollectionOfLines
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3179
     '1\2\3\' withCRs asCollectionOfLines
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3180
     '1\2\3' withCRs asCollectionOfLinesWithReturn
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3181
     '1\2\3\' withCRs asCollectionOfLinesWithReturn
18194
bec89cec5d13 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18181
diff changeset
  3182
     '' withCRs asCollectionOfLinesWithReturn
14455
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3183
    "
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3184
!
ee8809bade6b added: #asCollectionOfLinesWithReturn
Claus Gittinger <cg@exept.de>
parents: 14452
diff changeset
  3185
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3186
asCollectionOfSubstringsSeparatedBy:aCharacter
15740
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3187
    "return a collection containing substrings (separated by aCharacter)
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3188
     of the receiver.
15740
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3189
     If aCharacter occurs multiple times in a row, the result will contain empty strings.
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3190
     If the receiver ends with aCharacter, an empty string with be the last result element."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3191
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3192
    ^ self asCollectionOfSubCollectionsSeparatedBy:aCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3193
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3194
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3195
     '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
  3196
     '1 one:2 two:3 three:4 four:5 five:' asCollectionOfSubstringsSeparatedBy:$:
15740
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3197
     '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
  3198
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3199
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3200
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3201
asCollectionOfSubstringsSeparatedBy:aCharacter exceptIn:ch
15740
87dee3333591 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15734
diff changeset
  3202
    "return a collection containing the substrings (separated by aCharacter)
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3203
     of the receiver. If aCharacter occurs multiple times in a row,
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3204
     the result will contain empty strings.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3205
     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
  3206
     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
  3207
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3208
    |lines myClass except i c
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3209
     startIndex    "{ Class:SmallInteger }"
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3210
     stopIndex     "{ Class:SmallInteger }" |
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3211
11905
cbc2191cfe2d return stringCollections from asCollectionOfXXX
Claus Gittinger <cg@exept.de>
parents: 11904
diff changeset
  3212
    lines := StringCollection new.
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3213
    myClass := self species.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3214
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3215
    startIndex := 1.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3216
    except := false.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3217
    [
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3218
	i := startIndex-1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3219
	[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3220
	    i := i+1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3221
	    c := self at:i.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3222
	    c = ch ifTrue:[ except := except not. ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3223
	    i < self size and:[except or:[c ~= aCharacter]]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3224
	] whileTrue.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3225
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3226
	c = aCharacter ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3227
	    stopIndex := i -1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3228
	] ifFalse: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3229
	    stopIndex := i.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3230
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3231
	(stopIndex < startIndex) ifTrue: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3232
	    lines add:(myClass new:0)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3233
	] ifFalse: [
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3234
	    lines add:(self copyFrom:startIndex to:stopIndex)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3235
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3236
	startIndex := stopIndex + 2.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3237
	startIndex <= self size
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3238
    ] whileTrue.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3239
    ^ lines
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3240
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3241
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3242
     'asd''f;d''dd;s' asCollectionOfSubstringsSeparatedBy:$; exceptIn:$'
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3243
    "
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3244
    "/ 'asd "hello bla" foo "bla bla" bar' asCollectionOfSubstringsSeparatedBy:$  exceptIn:$"
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3245
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3246
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3247
asCollectionOfSubstringsSeparatedBy:aFieldSeparatorString textSeparator:aTextSeparatorOrNil
13343
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3248
    "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
  3249
     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
  3250
     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
  3251
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3252
    |aTextSeparatorChar items scanningWord inStream element lastIsFieldSeparator sz|
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3253
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3254
    aTextSeparatorOrNil isNil ifTrue:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3255
        ^ self asCollectionOfSubstringsSeparatedByAll: aFieldSeparatorString
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3256
    ].
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3257
    sz := aTextSeparatorOrNil size.
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3258
    sz = 0 ifTrue:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3259
        aTextSeparatorChar := aTextSeparatorOrNil
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3260
    ] ifFalse:[sz = 1  ifTrue:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3261
        "this is a String. Fetch the first character - compatibility to older expecco libs"
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3262
        aTextSeparatorChar := aTextSeparatorOrNil first.
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3263
    ] ifFalse:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3264
        self error:'textSeparatorSize > 1'.
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3265
    ]].
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3266
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3267
    items := OrderedCollection new.
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3268
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3269
    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
  3270
    [
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3271
        inStream skipSeparators.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3272
        inStream atEnd
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3273
    ] whileFalse:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3274
        lastIsFieldSeparator := false.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3275
        inStream peek == aTextSeparatorChar ifTrue:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3276
            inStream next.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3277
            element := ''.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3278
            scanningWord := true.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3279
            [ scanningWord and:[inStream atEnd not] ] whileTrue:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3280
                element := element , (inStream upTo:aTextSeparatorChar).
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3281
                (inStream peek == aTextSeparatorChar) ifTrue:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3282
                    element := element , aTextSeparatorChar .
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3283
                    inStream next.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3284
                ] ifFalse:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3285
                    scanningWord := false.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3286
                ].
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3287
            ].
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3288
            inStream upToAll_positionBefore:aFieldSeparatorString.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3289
        ] ifFalse:[
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3290
            element := inStream upToAll_positionBefore:aFieldSeparatorString
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3291
        ].
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3292
        items add:element.
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3293
        lastIsFieldSeparator := (inStream skipThroughAll:aFieldSeparatorString) notNil.
13343
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3294
    ].
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3295
    lastIsFieldSeparator ifTrue:[
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3296
        "empty element at the end of the line"
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3297
        items add:''.
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3298
    ].
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3299
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3300
    ^ items
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3301
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3302
    "
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3303
     self assert:(('#First#, #Second,SecondAdd#, #Third#' asCollectionOfSubstringsSeparatedBy:',' textSeparator: $#)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3304
                  sameContentsAs:#('First' 'Second,SecondAdd' 'Third')).
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3305
     self assert:(('#Fir##st#, #Second,SecondAdd#, #Third#' asCollectionOfSubstringsSeparatedBy:',' textSeparator: $#)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3306
                  sameContentsAs:#('Fir#st' 'Second,SecondAdd' 'Third')).
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3307
     self assert:(('#Fir##st#, Second,SecondAdd, #Third#' asCollectionOfSubstringsSeparatedBy:',' textSeparator: $#)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3308
                  sameContentsAs:#('Fir#st' 'Second' 'SecondAdd' 'Third')).
13343
3f058ad0d2f1 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13332
diff changeset
  3309
     self assert:(('First,Second,Third,,' asCollectionOfSubstringsSeparatedBy:',' textSeparator:nil)
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3310
                   sameContentsAs:#('First' 'Second' 'Third' '' '')).
13344
ec6860c49990 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Stefan Vogel <sv@exept.de>
parents: 13343
diff changeset
  3311
     self assert:(('First,Second,Third,,' asCollectionOfSubstringsSeparatedBy:',' textSeparator:'#')
19961
5c189c37da88 #DOCUMENTATION by mawalch
mawalch
parents: 19939
diff changeset
  3312
                   sameContentsAs:#('First' 'Second' 'Third' '' '')).
13327
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3313
    "
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3314
9bfd3ddd5110 changed: #asCollectionOfSubstringsSeparatedBy:textSeparator:
Claus Gittinger <cg@exept.de>
parents: 13310
diff changeset
  3315
    "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
  3316
!
999589445aa7 add new method for splitting a csv string into csv elements
ab
parents: 10437
diff changeset
  3317
7339
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3318
asCollectionOfSubstringsSeparatedByAll:aSeparatorString
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3319
    "return a collection containing the lines (separated by aSeparatorString)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3320
     of the receiver. If aSeparatorString occurs multiple times in a row,
7339
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3321
     the result will contain empty strings."
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3322
8852
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3323
    ^ self asCollectionOfSubCollectionsSeparatedByAll:aSeparatorString
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3324
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3325
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3326
     '1::2::3::4::5::' asCollectionOfSubstringsSeparatedByAll:'::'
7339
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3327
    "
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3328
!
20969b5770c9 asCollectionOfSubstringsSeparatedByAll:
Claus Gittinger <cg@exept.de>
parents: 7318
diff changeset
  3329
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3330
asCollectionOfSubstringsSeparatedByAny:aCollectionOfSeparators
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3331
    "return a collection containing the words (separated by any character
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3332
     from aCollectionOfSeparators) of the receiver.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3333
     This allows breaking up strings using any character as separator."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3334
8852
9f5984eff2c2 use asCollectionOfSubCollectionsSeparatedBy*
Claus Gittinger <cg@exept.de>
parents: 8794
diff changeset
  3335
    ^ self asCollectionOfSubCollectionsSeparatedByAny:aCollectionOfSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3336
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3337
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3338
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:#($:)
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3339
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:':'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3340
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:(Array with:$: with:Character space)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3341
     'hello:world:isnt:this nice' asCollectionOfSubstringsSeparatedByAny:': '
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3342
     'h1e2l3l4o' asCollectionOfSubstringsSeparatedByAny:($1 to: $9)
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3343
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3344
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3345
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3346
asCollectionOfWords
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3347
    "return a collection containing the words (separated by whitespace)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3348
     of the receiver. Multiple occurrences of whitespace characters will
17517
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  3349
     be treated like one - i.e. whitespace is skipped.
7a7bd8c467c7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17511
diff changeset
  3350
     (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
  3351
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3352
    |words|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3353
11905
cbc2191cfe2d return stringCollections from asCollectionOfXXX
Claus Gittinger <cg@exept.de>
parents: 11904
diff changeset
  3354
    words := StringCollection new.
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3355
    self asCollectionOfWordsDo:[:w | words add:w].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3356
    ^ words
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3357
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3358
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3359
     'hello world isnt this nice' asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3360
     '    hello    world   isnt   this   nice  ' asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3361
     'hello' asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3362
     '' asCollectionOfWords
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3363
     '      ' asCollectionOfWords
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3364
     ' foo bar__baz__bla__ bar ' asCollectionOfWords
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3365
     ' foo __bar__baz__bla__ bar ' asCollectionOfWords
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3366
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3367
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3368
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3369
asCollectionOfWordsDo:aBlock
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3370
    "evaluate aBlock for each word (separated by whitespace) of the receiver.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3371
     Multiple occurrences of whitespace characters will be treated like one
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3372
     - i.e. whitespace is skipped.
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3373
     Returns the number of words (i.e. the number of invocations of aBlock)."
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3374
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3375
    |count  "{ Class:SmallInteger }"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3376
     start  "{ Class:SmallInteger }"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3377
     stop   "{ Class:SmallInteger }"
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3378
     mySize "{ Class:SmallInteger }"|
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3379
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3380
    count := 0.
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3381
    start := 1.
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3382
    mySize := self size.
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3383
    [start <= mySize] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3384
	start := self indexOfNonSeparatorStartingAt:start.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3385
	start == 0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3386
	    ^ count
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3387
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3388
	stop := self indexOfSeparatorStartingAt:start.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3389
	stop == 0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3390
	    aBlock value:(self copyFrom:start to:mySize).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3391
	    ^ count + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3392
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3393
	aBlock value:(self copyFrom:start to:(stop - 1)).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3394
	start := stop.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3395
	count := count + 1
7797
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3396
    ].
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3397
    ^ count
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3398
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3399
    "
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3400
     'hello world isnt this nice' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3401
     '    hello    world   isnt   this   nice  ' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3402
     'hello' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3403
     '' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3404
     '      ' asCollectionOfWordsDo:[:w | Transcript showCR:w]
49e53638191f +asCollectionOfWordsDo:
Claus Gittinger <cg@exept.de>
parents: 7780
diff changeset
  3405
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3406
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3407
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3408
asFilename
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3409
    "return a Filename with pathname taken from the receiver"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3410
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3411
    ^ Filename named:self "(self asSingleByteStringReplaceInvalidWith:$?)"
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
    "Modified: 20.5.1996 / 09:38:15 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3414
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3415
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3416
asFixedPoint
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3417
    "read a fixedPoint number from the receiver.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3418
     Notice, that errors may occur during the read,
7423
5b25b8e82453 comments
Claus Gittinger <cg@exept.de>
parents: 7422
diff changeset
  3419
     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
  3420
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3421
    ^ FixedPoint readFromString:self
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3422
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3423
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3424
     '0.123' asFixedPoint
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3425
     '12345' asFixedPoint
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3426
     '(1/5)' asFixedPoint
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3427
     'foo' asFixedPoint
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3428
     Object errorSignal handle:[:ex | ex return:0] do:['foo' asFixedPoint]
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3429
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3430
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3431
    "Modified: / 25.10.1997 / 15:19:00 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3432
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3433
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3434
asFixedPoint:scale
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3435
    "read a fixedPoint number with scale number of post-decimal digits
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3436
     from the receiver. Scale controls the number of displayed digits,
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3437
     not the number of actually valid digits.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3438
     Notice, that errors may occur during the read,
7423
5b25b8e82453 comments
Claus Gittinger <cg@exept.de>
parents: 7422
diff changeset
  3439
     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
  3440
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3441
    ^ (FixedPoint readFromString:self) scale:scale
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3442
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3443
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3444
     '0.123' asFixedPoint:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3445
     '123456' asFixedPoint:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3446
     ('3.14157' asFixedPoint:1) asFixedPoint:5
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3447
     '3.14157' asFixedPoint:2
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3448
     'foo' asFixedPoint:2
3060
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3449
    "
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3450
0faf242e1142 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 3024
diff changeset
  3451
    "Modified: / 25.10.1997 / 15:21:57 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3452
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3453
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3454
asFloat
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3455
    "read a float number from the receiver.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3456
     Notice, that errors may occur during the read,
7422
200486204923 comments
Claus Gittinger <cg@exept.de>
parents: 7421
diff changeset
  3457
     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
  3458
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3459
    ^ (Number readFromString:self) asFloat
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3460
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3461
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3462
     '0.123' asFloat
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3463
     '12345' asFloat
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3464
     '(1/5)' asFloat
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3465
     Object errorSignal handle:[:ex | ex return:0] do:['foo' asFloat]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3466
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3467
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3468
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3469
asInteger
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3470
    "convert the receiver into an integer.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3471
     Notice, that errors may occur during the read,
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3472
     so you better setup some exception handler when using this method.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3473
     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
  3474
     in other smalltalks.
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3475
     For less strict integer reading, use Integer readFrom:aString"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3476
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3477
    ^ Integer readFromString:self
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3478
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3479
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3480
     '12345678901234567890' asInteger
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3481
     '-1234' asInteger
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3482
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3483
     The following raises an error:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3484
	 '0.123' asInteger              <- reader finds more after reading 0
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3485
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3486
     whereas the less strict readFrom does not:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3487
	 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
  3488
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  3489
     '0.123' asInteger
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3490
     '0.123' asNumber    <- returns what you expect
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3491
     Object errorSignal handle:[:ex | ex return:0] do:['foo' asInteger]
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3492
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3493
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3494
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3495
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3496
asLowercase
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3497
    "return a copy of myself in lowercase letters"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3498
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  3499
    |newStr c bitsPerCharacter
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3500
     mySize "{ Class: SmallInteger }" |
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3501
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3502
    mySize := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3503
    mySize == 0 ifTrue:[^ self].
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3504
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3505
    newStr := self species new:mySize.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3506
    bitsPerCharacter := newStr bitsPerCharacter.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3507
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3508
    "/ handle the very seldom case of an uppercase char which needs
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  3509
    "/ more bits in its lowercase variant
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3510
    "/ (there are only a few of them)
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3511
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3512
    1 to:mySize do:[:i |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3513
	c := (self at:i) asLowercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3514
	(c bitsPerCharacter > bitsPerCharacter
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3515
	 and:[c stringSpecies ~= newStr stringSpecies]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3516
	    newStr := c stringSpecies fromString:newStr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3517
	    bitsPerCharacter := newStr bitsPerCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3518
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3519
	newStr at:i put:c
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3520
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3521
    ^ newStr
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3522
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3523
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3524
     'HelloWorld' asLowercase
18662
3ad440593060 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18657
diff changeset
  3525
     'HelloWorld' asUnicode16String asLowercase
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3526
     'HelloWorld' asLowercaseFirst
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3527
     'HelloWorld' asUppercase
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3528
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3529
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3530
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3531
asLowercaseFirst
17508
8fe97d926c7d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17486
diff changeset
  3532
    "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
  3533
     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
  3534
     receiver."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3535
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3536
    |newString firstChar firstCharAsLowercase|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3537
11525
d76e654e24bd alspa changes
Claus Gittinger <cg@exept.de>
parents: 11524
diff changeset
  3538
    self isEmpty ifTrue:[^ self].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3539
    firstChar := (self at:1).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3540
    firstCharAsLowercase := firstChar asLowercase.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3541
    firstChar == firstCharAsLowercase ifTrue:[ ^ self].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3542
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3543
    firstCharAsLowercase bitsPerCharacter > self bitsPerCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3544
	newString := firstCharAsLowercase stringSpecies fromString:self.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3545
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3546
	newString := self stringSpecies fromString:self.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3547
    ].
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3548
    newString at:1 put:firstCharAsLowercase.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3549
    ^ newString
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3550
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3551
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3552
     'HelloWorld' asLowercase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3553
     'HelloWorld' asLowercaseFirst
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3554
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3555
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3556
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3557
asLowercaseLast
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3558
    "return a copy of myself where the last character is
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3559
     converted to lowercase."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3560
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3561
    |newString sz|
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3562
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3563
    sz := self size.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3564
    newString := self copyFrom:1 to:sz.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3565
    sz > 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3566
	newString at:sz put:(newString at:sz) asLowercase
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3567
    ].
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3568
    ^ newString
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3569
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3570
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3571
     'HelloWorld' asLowercase
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  3572
     'HelloWorlD' asLowercaseLast
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3573
    "
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3574
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  3575
17644
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  3576
asMutator
19473
4fe5cf0656b1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19464
diff changeset
  3577
    "return a corresponding setter method's selector.
4fe5cf0656b1 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19464
diff changeset
  3578
     I.e. #foo asMutator returns #foo:"
17644
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  3579
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  3580
    ^ (self asOneByteString,':') asSymbol
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  3581
!
db81a12ac65d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17625
diff changeset
  3582
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3583
asNumber
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3584
    "read a number from the receiver.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3585
     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
  3586
     so you better setup some signal handler when using this method.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3587
     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
  3588
     it does not handle smalltalk numbers (i.e. radix).
c6396149df08 comment
Claus Gittinger <cg@exept.de>
parents: 9087
diff changeset
  3589
     To read a smalltalk number, use Number >> readSmalltalkFrom:.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3590
     This may change if ANSI specifies it."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3591
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3592
"/ ST-80 behavior:
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3593
"/  ^ Number readFromString:self onError:0
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3594
17061
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  3595
    ^ Number fromString:self
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  3596
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  3597
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3598
     '123'     asNumber
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3599
     '123.567' asNumber
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3600
     '(5/6)'   asNumber
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3601
     'foo'     asNumber
17061
c1de9e428073 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17043
diff changeset
  3602
     '123a'    asNumber
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3603
     Object errorSignal handle:[:ex | ex returnWith:0] do:['foo' asNumber]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3604
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3605
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3606
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3607
asNumberFromFormatString:ignored
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3608
    "read a number from the receiver, ignoring any nonDigit characters.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3609
     This is typically used to convert from strings which include
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3610
     dollar-signs or millenium digits. However, this method also ignores
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3611
     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
  3612
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3613
    |tempString|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3614
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3615
    tempString := self collect:[:char | char isDigit].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3616
    ^ Number readFromString:tempString onError:0
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3617
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3618
    "
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3619
     'USD 123' asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3620
     'DM 123'  asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3621
     '123'     asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3622
     '123.567' asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3623
     '(5/6)'   asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3624
     'foo'     asNumberFromFormatString:'foo'
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3625
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3626
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3627
7977
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  3628
asSingleByteStringIfPossible
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  3629
    "if possible, return the receiver converted to a 'normal' string.
18181
f180c4847ddc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18172
diff changeset
  3630
     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
  3631
     If not possible, the (wideString) receiver is returned."
7977
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  3632
14555
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  3633
    self isWideString ifFalse:[^ self].
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3634
    self containsNon8BitElements ifTrue:[^ self].
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3635
    ^ self asSingleByteString
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3636
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3637
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3638
     'hello' asSingleByteStringIfPossible
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3639
     'hello' asText asSingleByteStringIfPossible
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3640
     'hello' asUnicodeString asText asSingleByteStringIfPossible
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3641
     'hello' asUnicodeString asSingleByteStringIfPossible
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3642
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3643
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3644
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3645
asSingleByteStringReplaceInvalidWith:replacementCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3646
    "return the receiver converted to a 'normal' string,
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3647
     with invalid characters replaced by replacementCharacter.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3648
     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
  3649
     and replace characters above code-255 with some replacement."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3650
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3651
    |newString|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3652
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3653
    newString := String new:(self size).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3654
    1 to:self size do:[:idx |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3655
	|char|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3656
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3657
	char := self at:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3658
	char codePoint <= 16rFF ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3659
	    newString at:idx put:char
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3660
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3661
	    newString at:idx put:replacementCharacter
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3662
	].
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3663
    ].
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3664
    ^ newString
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3665
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  3666
    "Created: 30.6.1997 / 13:02:14 / cg"
7977
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  3667
!
d6f3255accdd *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7968
diff changeset
  3668
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3669
asString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3670
    "return myself - I am a string"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3671
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3672
    ^ self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3673
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3674
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3675
asStringCollection
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3676
    "return a collection of lines from myself."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3677
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3678
    ^ StringCollection fromString:self "string"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3679
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3680
    "Modified: 13.5.1996 / 20:36:59 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3681
!
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  3682
1434
a317ba02d685 allow aText asSymbol
Claus Gittinger <cg@exept.de>
parents: 1429
diff changeset
  3683
asSymbol
19039
ef85a80a62ea #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19033
diff changeset
  3684
    "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
  3685
     The receiver must be a singleByte-String.
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  3686
     TwoByte- and FourByteSymbols are (currently ?) not allowed."
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  3687
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  3688
    |str|
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  3689
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3690
    str := self string.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3691
    str ~~ self ifTrue:[ ^ str asSymbol ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3692
    ^ self asSingleByteString asSymbol
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3693
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3694
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3695
asSymbolIfInterned
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  3696
    "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
  3697
     Otherwise, return nil.
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  3698
     This can be used to query for an existing symbol and is the same as:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3699
	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
  3700
     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
  3701
     The receiver must be a singleByte-String.
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  3702
     TwoByte- and FourByteSymbols are (currently ?) not allowed."
1435
3ee1fde2aa58 allow asSymbolIfInterned for Texts
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  3703
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3704
    |str|
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3705
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3706
    str := self string.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3707
    str == self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3708
	"must be some kind of N-ByteString"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3709
	str := self asSingleByteStringIfPossible.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3710
	str == self ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3711
	    "single byte string conversion is not possible"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3712
	    ^ nil.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3713
	].
6642
4ce854094c6f asSymbolIfInterned avoid recursion failure
penk
parents: 6528
diff changeset
  3714
    ].
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3715
    ^ str asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3716
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3717
    "
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3718
     (Unicode16String with:(Character value:16rFFFF)) asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3719
     'new' asUnicodeString asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3720
     'new' asText asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3721
     'new' asUnicodeString asText asSymbolIfInterned
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  3722
    "
1435
3ee1fde2aa58 allow asSymbolIfInterned for Texts
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  3723
3ee1fde2aa58 allow asSymbolIfInterned for Texts
Claus Gittinger <cg@exept.de>
parents: 1434
diff changeset
  3724
    "Created: 22.5.1996 / 16:37:04 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3725
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3726
20160
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3727
asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3728
    "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
  3729
     Otherwise, return self.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3730
     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
  3731
        self knownAsSymbol ifTrue:[self asSymbol] ifFalse:[self]
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3732
     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
  3733
     The receiver must be a singleByte-String.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3734
     TwoByte- and FourByteSymbols are (currently ?) not allowed."
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3735
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3736
    |sym|
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3737
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3738
    sym := self asSymbolIfInterned.
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3739
    ^ sym isNil ifTrue:[self] ifFalse:[sym].
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3740
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3741
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3742
    "
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3743
     (Unicode16String with:(Character value:16rFFFF)) asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3744
     'new' asUnicodeString asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3745
     'new' asText asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3746
     'new' asUnicodeString asText asSymbolIfInternedOrSelf
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3747
    "
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3748
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3749
    "Created: 22.5.1996 / 16:37:04 / cg"
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3750
!
3e9b5d2aa65e #FEATURE by stefan
Stefan Vogel <sv@exept.de>
parents: 20155
diff changeset
  3751
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3752
asText
9403
ba6ca2bcfe10 documentation
Stefan Vogel <sv@exept.de>
parents: 9391
diff changeset
  3753
    "return a Text-object (string with emphasis) from myself."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3754
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3755
    "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
  3756
    Text isNil ifTrue:[^ self].
17065
9ed49d70737a class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17061
diff changeset
  3757
    ^ Text string:self
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3758
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3759
    "Created: 12.5.1996 / 10:41:14 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3760
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3761
17021
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3762
asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3763
    "convert the receiver into an Timestamp.
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3764
     Notice, that errors may occur during the read,
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3765
     so you better setup some exception handler when using this method."
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3766
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3767
    ^ Timestamp readFromString:self
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3768
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3769
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3770
     '2014-11-10 21:30:22.444' asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3771
     '2014-11-10 21:30:22.444Z' asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3772
     '2014-11-10 21:30:22.444+0200' asTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3773
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3774
!
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  3775
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3776
asTitlecase
8027
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3777
    "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
  3778
     and everything else to lowercase.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3779
     See the comment in Character on what titlecase is."
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3780
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3781
    |newStr c bitsPerCharacter
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3782
     mySize "{ Class: SmallInteger }" |
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3783
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3784
    mySize := self size.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3785
    newStr := self species new:mySize.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3786
    bitsPerCharacter := newStr bitsPerCharacter.
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3787
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3788
    1 to:mySize do:[:i |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3789
	i == 1 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3790
	    c := (self at:i) asTitlecase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3791
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3792
	    c := (self at:i) asLowercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3793
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3794
	c bitsPerCharacter > bitsPerCharacter ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3795
	    newStr := c stringSpecies fromString:newStr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3796
	    bitsPerCharacter := newStr bitsPerCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3797
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3798
	newStr at:i put:c
8027
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3799
    ].
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3800
    ^ newStr
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3801
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3802
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3803
     'helloWorld' asTitlecase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3804
     'HelloWorld' asTitlecase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3805
     'HELLOWORLD' asTitlecase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3806
     'helloworld' asTitlecase
8027
4536f92bdbb4 asTitlecase
Claus Gittinger <cg@exept.de>
parents: 8026
diff changeset
  3807
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3808
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3809
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3810
asTitlecaseFirst
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3811
    "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
  3812
     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
  3813
     (2-character glyphs), which consist of an upper- and lower-case characters.
93db40068fba comment
Claus Gittinger <cg@exept.de>
parents: 8023
diff changeset
  3814
     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
  3815
     receiver."
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3816
8026
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  3817
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3818
     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
  3819
     (Let us write this compound character using ASCII as 'dz'.)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3820
     This character uppercases to character U+01F1, LATIN CAPITAL LETTER DZ.
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3821
     (Which is basically 'DZ'.)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3822
     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
  3823
     (Which we can write 'Dz'.)
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  3824
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  3825
      character uppercase titlecase
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  3826
      --------- --------- ---------
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  3827
      dz        DZ        Dz
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  3828
    "
96cc838078ba comment
Claus Gittinger <cg@exept.de>
parents: 8025
diff changeset
  3829
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3830
    |newString firstChar firstCharAsTitlecase|
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3831
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3832
    firstChar := (self at:1).
8025
04d9b6ef3012 comments
Claus Gittinger <cg@exept.de>
parents: 8024
diff changeset
  3833
    firstCharAsTitlecase := firstChar asTitlecase.
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3834
    firstChar == firstCharAsTitlecase ifTrue:[ ^ self].
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  3835
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  3836
    firstCharAsTitlecase bitsPerCharacter > self bitsPerCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3837
	newString := firstCharAsTitlecase stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  3838
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3839
	newString := self stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  3840
    ].
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3841
    newString at:1 put:firstCharAsTitlecase.
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3842
    ^ newString
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3843
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3844
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3845
     'helloWorld' asTitlecaseFirst
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3846
     'HelloWorld' asTitlecaseFirst
8023
c991d56bbaec +asTitlecaseFirst
Claus Gittinger <cg@exept.de>
parents: 8003
diff changeset
  3847
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3848
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3849
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3850
asTwoByteString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3851
    "return the receiver converted to a two-byte string.
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3852
     Will be obsolete soon - use asUnicode16String."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3853
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3854
    ^ TwoByteString fromString:self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3855
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3856
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3857
asURI
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3858
    "return an URI with string taken from the receiver"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3859
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3860
    ^ URI fromString:self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3861
!
8710
Stefan Vogel <sv@exept.de>
parents: 8646
diff changeset
  3862
5776
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  3863
asURL
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  3864
    "return an URL-object from myself."
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  3865
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  3866
    ^ URL fromString:self
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  3867
7169165b44f2 added #asURL
Claus Gittinger <cg@exept.de>
parents: 5759
diff changeset
  3868
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3869
     'http://www.exept.de:80/index.html' asURL host
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3870
     'http://www.exept.de:80/index.html' asURL port
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3871
     'http://www.exept.de:80/index.html' asURL method
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3872
     'http://www.exept.de:80/index.html' asURL path
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3873
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3874
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3875
18901
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3876
asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3877
    "return self as a UUID"
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3878
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3879
    ^ UUID fromString:self
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3880
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3881
    "
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3882
     UUID genUUID asString asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3883
     '{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3884
     '{EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B}' asUnicodeString asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3885
     'EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3886
     'EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B quatsch' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3887
     'quark EAB22AC0-30C1-11CF-A7EB-0000C05BAE0B' asUUID
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3888
    "
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3889
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3890
    "Modified: / 02-08-2007 / 16:43:29 / cg"
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3891
!
576b76f7d201 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18893
diff changeset
  3892
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3893
asUnicode16String
15035
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  3894
    "return the receiver in a two-byte per character representation.
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  3895
     Normally, the internal ST/X representation should be transparent and not
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  3896
     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
  3897
     such as wide-string ffi calls or file contents."
ecbb70df7a5c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14993
diff changeset
  3898
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3899
     |sz|
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3900
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3901
     sz := self size.
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3902
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3903
     ^ (Unicode16String new:sz)
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3904
	   replaceFrom:1 to:sz with:self startingAt:1;
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3905
	   yourself.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3906
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3907
    "
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3908
	'abc' asUnicode16String
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3909
    "
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3910
!
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3911
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3912
asUnicode16StringZ
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3913
    "return the receiver in a two-byte per character representation.
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  3914
     Make sure that is zero terminated (last char is 16r0000).
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3915
     Normally, the internal ST/X representation should be transparent and not
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3916
     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
  3917
     such as wide-string ffi calls or file contents."
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3918
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3919
     |sz|
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3920
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3921
     sz := self size.
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3922
     (self at:sz) == (Character codePoint:0) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3923
	 ^ self asUnicode16String.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3924
     ].
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3925
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  3926
     ^ (Unicode16String new:sz+1)
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3927
	   replaceFrom:1 to:sz with:self startingAt:1;
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3928
	   at:sz+1 put:(Character codePoint:0);
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3929
	   yourself.
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3930
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3931
     "
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3932
	'abc' asUnicode16StringZ
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3933
	'abc' asUnicode16String asUnicode16StringZ
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  3934
     "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3935
!
8295
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  3936
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  3937
asUnicode32String
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3938
    "return the receiver in a four-byte per character representation.
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3939
     Normally, the internal ST/X representation should be transparent and not
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3940
     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
  3941
     such as wide-string ffi calls or file contents."
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3942
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3943
    ^ self as:Unicode32String
8295
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  3944
!
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  3945
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  3946
asUnicodeString
16051
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3947
    "return the receiver in a two-byte per character representation.
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3948
     Normally, the internal ST/X representation should be transparent and not
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3949
     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
  3950
     such as wide-string ffi calls or file contents."
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3951
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3952
    ^ self asUnicode16String
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3953
    "
66b82dbe1172 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15936
diff changeset
  3954
     'Hello World' asUnicodeString
14141
e86d245213b0 comment/format in: #asUnicodeString
Stefan Vogel <sv@exept.de>
parents: 14137
diff changeset
  3955
    "
8295
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  3956
!
8433d819226b Define #asUnicode16String and #asUnicode32String in CharacterArray
Stefan Vogel <sv@exept.de>
parents: 8222
diff changeset
  3957
13073
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3958
asUnixFilename
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3959
    "return a UnixFilename with pathname taken from the receiver"
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3960
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3961
    ^ UnixFilename named:self
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3962
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3963
    "Created: / 20-09-2010 / 21:42:55 / cg"
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3964
!
19261a5b4430 added: #asUnixFilename
Claus Gittinger <cg@exept.de>
parents: 13050
diff changeset
  3965
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3966
asUppercase
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3967
    "return a copy of myself in uppercase letters"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3968
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  3969
    |newStr c bitsPerCharacter
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3970
     mySize "{ Class: SmallInteger }" |
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3971
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3972
    mySize := self size.
8954
12e701d7b5ac allow for receiver to be empty in asLowercase and asUppercase.
Claus Gittinger <cg@exept.de>
parents: 8938
diff changeset
  3973
    mySize == 0 ifTrue:[^ self].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3974
    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
  3975
    bitsPerCharacter := newStr bitsPerCharacter.
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  3976
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3977
    "/ handle the very seldom case of a lowercase char which needs
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  3978
    "/ more bits in its uppercase variant
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3979
    "/ (there are only a few of them)
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3980
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3981
    1 to:mySize do:[:i |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3982
	c := (self at:i) asUppercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3983
	c bitsPerCharacter > bitsPerCharacter ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3984
	    newStr := c stringSpecies fromString:newStr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3985
	    bitsPerCharacter := newStr bitsPerCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3986
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  3987
	newStr at:i put:c
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3988
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3989
    ^ newStr
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3990
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  3991
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3992
     'helloWorld' asUppercase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  3993
     'helloWorld' asUppercaseFirst
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3994
     (Character value:16rB5) asString asUppercase   -- needs 16 bits !!
18657
fee4d5739a73 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18612
diff changeset
  3995
     (Character value:16rFF) asString asUppercase   -- needs 16 bits !!
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3996
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3997
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3998
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  3999
asUppercaseFirst
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4000
    "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
  4001
     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
  4002
     receiver."
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4004
    |newString firstChar firstCharAsUppercase|
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4005
12679
18c4eabbb673 changed: #asUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 12665
diff changeset
  4006
    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
  4007
    firstChar := self at:1.
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4008
    firstCharAsUppercase := firstChar asUppercase.
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4009
    firstChar == firstCharAsUppercase ifTrue:[ ^ self].
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4010
12679
18c4eabbb673 changed: #asUppercaseFirst
Claus Gittinger <cg@exept.de>
parents: 12665
diff changeset
  4011
    "/ 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
  4012
    firstCharAsUppercase bitsPerCharacter > self bitsPerCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4013
	newString := firstCharAsUppercase stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4014
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4015
	newString := self stringSpecies fromString:self.
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  4016
    ].
8003
6e690f4b79f1 asLowercase/asUppercase and friends care for 16-bit chars
Claus Gittinger <cg@exept.de>
parents: 7995
diff changeset
  4017
    newString at:1 put:firstCharAsUppercase.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4018
    ^ newString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4019
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4020
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4021
     'helloWorld' asUppercase
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4022
     'helloWorld' asUppercaseFirst
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4023
     'HelloWorld' asUppercaseFirst
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4024
    "
9192
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
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4027
asUppercaseLast
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4028
    "return a copy of myself where the last character is
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4029
     converted to uppercase."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4030
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4031
    |newString sz|
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4032
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4033
    sz := self size.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4034
    newString := self copyFrom:1 to:sz.
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4035
    sz > 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4036
	newString at:sz put:(newString at:sz) asUppercase
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4037
    ].
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4038
    ^ newString
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4039
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4040
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4041
     'HelloWorld' asUppercase
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4042
     'HelloWorld' asUppercaseLast
11828
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
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  4045
17021
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4046
asUtcTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4047
    "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
  4048
     Notice, that errors may occur during the read,
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4049
     so you better setup some exception handler when using this method."
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4050
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4051
    ^ UtcTimestamp readFromString:self
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4052
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4053
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4054
     '2014-11-10 21:30:22.444' asUtcTimestamp
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4055
    "
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4056
!
c7ac4c24c541 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17000
diff changeset
  4057
11062
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4058
literalArrayEncoding
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4059
    "encode myself as an array literal, from which a copy of the receiver
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4060
     can be reconstructed with #decodeAsLiteralArray."
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4061
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4062
    ^ self
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4063
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4064
    "Modified: 1.9.1995 / 02:25:45 / claus"
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4065
    "Modified: 22.4.1996 / 13:00:50 / cg"
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4066
!
c28d0630abf5 lifted #literalArrayEncoding
fm
parents: 11049
diff changeset
  4067
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4068
string
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4069
    "return the receiver - for ST-80 compatibility"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4070
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4071
    ^ self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4072
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4073
    "Modified: 27.4.1996 / 13:29:30 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4074
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4075
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4076
!CharacterArray methodsFor:'copying'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4077
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4078
, aStringOrCharacter
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4079
    "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
  4080
     This is nonStandard, but convenient"
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4081
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4082
    |myWidth otherWidth|
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4083
1050
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4084
    aStringOrCharacter isCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4085
	^ self copyWith:aStringOrCharacter
1050
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4086
    ].
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4087
    aStringOrCharacter isText ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4088
	^ aStringOrCharacter concatenateFromString:self
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4089
    ].
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4090
    aStringOrCharacter isString ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4091
	(otherWidth := aStringOrCharacter bitsPerCharacter) ~~ (myWidth := self bitsPerCharacter) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4092
	    otherWidth > myWidth ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4093
		^ (aStringOrCharacter species fromString:self) , aStringOrCharacter
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4094
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4095
	    ^ self , (self species fromString:aStringOrCharacter)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4096
	].
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4097
    ].
1050
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4098
    ^ super , aStringOrCharacter
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4099
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4100
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4101
     'hello' , $1
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4102
     'hello' , '1'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4103
     'hello' , (' world' asText allBold)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4104
     'hello' , (JISEncodedString fromString:' world')
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4105
     (JISEncodedString fromString:'hello') , ' world'
1411
a3b3ab3044c6 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1396
diff changeset
  4106
1422
9a0b792f2953 showCr: -> showCR:
Claus Gittinger <cg@exept.de>
parents: 1411
diff changeset
  4107
     Transcript showCR:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4108
	 (Text string:'hello' emphasis:#italic) , (Text string:' world' emphasis:#bold)
1050
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4109
    "
2f14bbd792a9 , now accepts a character-argument
Claus Gittinger <cg@exept.de>
parents: 1028
diff changeset
  4110
2720
98c21d9a07c0 allow mixed strings to be concatenated using comma
Claus Gittinger <cg@exept.de>
parents: 2692
diff changeset
  4111
    "Modified: 28.6.1997 / 00:13:17 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4112
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4113
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4114
,, aString
7020
f51001115a54 comment
penk
parents: 6998
diff changeset
  4115
    "concatenate with a newLine in between"
6965
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4116
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4117
    ^ (self copyWith:Character cr) , aString
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4118
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4119
   "
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4120
     hello ,, world
7020
f51001115a54 comment
penk
parents: 6998
diff changeset
  4121
     'hello' ,, 'world'
6965
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4122
   "
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4123
!
c40f18fdb4bb New; #,,
Stefan Vogel <sv@exept.de>
parents: 6948
diff changeset
  4124
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4125
chopTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4126
    "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
  4127
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4128
     in the middle have been removed for a total string length
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4129
     of maxLen."
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4130
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4131
    |sz n1 n2|
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4132
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4133
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4134
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4135
    n1 := n2 := maxLen // 2.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4136
    maxLen odd ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4137
	n2 := n1 + 1
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4138
    ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4139
    ^ (self copyFrom:1 to:n1) , (self copyFrom:sz - n2 + 1)
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4140
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4141
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4142
     '12345678901234'   chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4143
     '123456789012345'  chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4144
     '1234567890123456' chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4145
     'aShortString' chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4146
     'aVeryLongNameForAStringThatShouldBeShortened' chopTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4147
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4148
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4149
    "Modified: / 24-10-2006 / 12:32:01 / cg"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4150
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4151
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4152
contractAtBeginningTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4153
    "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
  4154
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4155
     at the beginning have been replaced by '...' for a total string length
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4156
     of maxLen. Can be used to abbreviate long entries in tables."
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4157
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4158
    |sz|
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4159
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4160
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4161
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4162
    ^ '...' , (self copyFrom:(sz - (maxLen - 4)))
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4163
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4164
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4165
     '12345678901234' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4166
     '123456789012345' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4167
     '1234567890123456' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4168
     'aShortString' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4169
     'aVeryLongNameForAStringThatShouldBeShortened' contractAtBeginningTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4170
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4171
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4172
    "Modified: / 24-10-2006 / 12:32:13 / cg"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4173
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4174
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4175
contractAtEndTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4176
    "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
  4177
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4178
     at the end have been replaced by '...' for a total string length
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4179
     of maxLen. Can be used to abbreviate long entries in tables."
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4180
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4181
    |sz|
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4182
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4183
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4184
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4185
    ^ (self copyTo:maxLen-3),'...'
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4186
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4187
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4188
     '12345678901234' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4189
     '123456789012345' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4190
     '1234567890123456' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4191
     'aShortString' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4192
     'aVeryLongNameForAStringThatShouldBeShortened' contractAtEndTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4193
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4194
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4195
    "Modified: / 24-10-2006 / 12:32:26 / cg"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4196
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4197
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4198
contractLeftTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4199
    "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
  4200
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4201
     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
  4202
     of maxLen.
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4203
     Very similar to contractTo:, but better to abbreviate long filename entries,
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4204
     where the right part is of more use than the left."
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4205
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4206
    |sz "{ SmallInteger }"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4207
     halfSize quarterSize "{ SmallInteger }"
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4208
     leftEnd rightEnd rightStart|
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4209
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4210
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4211
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4212
    halfSize := maxLen // 2.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4213
    quarterSize := maxLen // 4.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4214
    leftEnd := quarterSize-1.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4215
    rightEnd := maxLen - leftEnd - 3.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4216
    rightStart := sz - rightEnd + 1.
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4217
    ^ (self copyTo:leftEnd),'...',(self copyFrom:rightStart)
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4218
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4219
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4220
     '12345678901234' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4221
     '123456789012345' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4222
     '1234567890123456' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4223
     'aShortString' contractLeftTo:15
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4224
     'aVeryLongNameForAStringThatShouldBeShortened' contractLeftTo:15
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4225
     '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
  4226
    "
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4227
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4228
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4229
contractTo:maxLen
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4230
    "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
  4231
     Otherwise, return a copy of the receiver, where some characters
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4232
     in the middle have been replaced by '...' for a total string length
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4233
     of maxLen. Can be used to abbreviate long entries in tables."
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4234
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4235
    |sz "{ SmallInteger }" leftSize rightSize|
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4236
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4237
    (sz := self size) <= maxLen ifTrue:[ ^ self ].
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4238
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4239
    rightSize := maxLen // 2.
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4240
    leftSize := maxLen - rightSize.
13822
8c2b90928dd9 contractTo:
Claus Gittinger <cg@exept.de>
parents: 13633
diff changeset
  4241
    leftSize := leftSize - 2.
8c2b90928dd9 contractTo:
Claus Gittinger <cg@exept.de>
parents: 13633
diff changeset
  4242
    rightSize := rightSize - 1.
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4243
    ^ (self copyTo:leftSize),'...',(self copyFrom:(sz+1-rightSize))
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4244
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4245
    "
13882
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4246
     '12345678901234' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4247
     '123456789012345' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4248
     '1234567890123456' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4249
     '12345678901234567' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4250
     '123456789012345678' contractTo:15
187a02bd5c99 OUCH: back to old hash; crashes Certificate compare in expecco (WHY??????=
Claus Gittinger <cg@exept.de>
parents: 13879
diff changeset
  4251
     'aShortString' contractTo:15
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4252
     'aVeryLongNameForAStringThatShouldBeShortened' contractTo:15
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4253
     '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
  4254
     ('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
  4255
     ('1234567890123456789012345678901234567' contractTo:29) size
13362
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4256
    "
ee643208df42 changed: #contractTo:
Claus Gittinger <cg@exept.de>
parents: 13344
diff changeset
  4257
13822
8c2b90928dd9 contractTo:
Claus Gittinger <cg@exept.de>
parents: 13633
diff changeset
  4258
    "Modified (comment): / 24-11-2011 / 19:17:46 / cg"
11329
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4259
!
28cf7ddd8b44 category changes
Claus Gittinger <cg@exept.de>
parents: 11326
diff changeset
  4260
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4261
copyReplaceAll:oldElement with:newElement
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4262
    "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
  4263
     have been replaced by newElement."
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4264
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4265
    "/ ANSI seems to allow a sequence to be replaced by another sequence,
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4266
    "/ whereas the old ST80 meant replace all occurrences... - sigh.
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4267
    oldElement isByteCollection ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4268
	newElement isByteCollection ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4269
	    ^ self copyReplaceString:oldElement withString:newElement.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4270
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4271
	self halt:'check if this is legal'.
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4272
    ].
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4273
    newElement isByteCollection ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4274
	self halt:'check if this is legal'.
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4275
    ].
16212
da322a6b1d2a class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 16202
diff changeset
  4276
    ^ super copyReplaceAll:oldElement with:newElement
16202
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4277
!
f83742e87419 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16200
diff changeset
  4278
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4279
copyReplaceString:subString withString:newString
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4280
    "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
  4281
     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
  4282
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4283
    |tmpStream idx idx1|
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4284
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  4285
    tmpStream := self species writeStream.
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4286
    idx := 1.
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4287
    [idx ~~ 0] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4288
	idx1 := idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4289
	idx := self indexOfSubCollection:subString startingAt:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4290
	idx ~~ 0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4291
	    tmpStream nextPutAll:(self copyFrom:idx1 to:idx-1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4292
	    tmpStream nextPutAll:newString.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4293
	    idx := idx + subString size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4294
	]
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4295
    ].
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4296
    tmpStream nextPutAll:(self copyFrom:idx1).
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4297
    ^ tmpStream contents
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4298
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4299
   "
9306
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4300
     '12345678901234567890' copyReplaceString:'123' withString:'OneTwoThree'
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4301
     '12345678901234567890' copyReplaceString:'123' withString:'*'
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4302
     '12345678901234567890' copyReplaceString:'234' withString:'foo'
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4303
de9b438212b8 comment
Stefan Vogel <sv@exept.de>
parents: 9282
diff changeset
  4304
     ('a string with spaces' copyReplaceAll:$  withAll:' foo ')
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4305
	copyReplaceString:'foo' withString:'bar'
8347
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4306
    "
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4307
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4308
    "Modified: / 31-05-1999 / 12:33:59 / cg"
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4309
    "Created: / 12-05-2004 / 12:00:00 / cg"
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4310
!
3ae935723b46 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8310
diff changeset
  4311
8040
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4312
copyWith:aCharacter
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  4313
    "return a new string containing the receiver's characters
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4314
     and the single new character, aCharacter.
8040
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4315
     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
  4316
     as argument, but equivalent to copy-and-addLast.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4317
     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
  4318
     (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
  4319
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4320
    |sz newString|
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4321
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4322
    aCharacter bitsPerCharacter > self bitsPerCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4323
	sz := self size.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4324
	newString := aCharacter stringSpecies new:sz + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4325
	newString replaceFrom:1 to:sz with:self startingAt:1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4326
	newString at:sz+1 put:aCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4327
	^ newString.
8040
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4328
    ].
f10cca439066 copyWith for mixed-width string/character
Claus Gittinger <cg@exept.de>
parents: 8037
diff changeset
  4329
    ^ super copyWith:aCharacter
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4330
!
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4331
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4332
restAfter:keyword withoutSeparators:strip
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4333
    "compare the left of the receiver with keyword,
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4334
     if it matches return the right.
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4335
     Finally, if strip is true, remove whiteSpace.
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4336
     This method is used to match and extract lines of the form:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4337
	something: rest
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4338
     where we are interested in rest, but only if the receiver string
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4339
     begins with something.
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4340
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4341
     You may wonder why such a specialized method exists here
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4342
     - this is so common when processing mailboxes,
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4343
     rcs files, nntp/pop3 responses, that is was considered worth
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4344
     a special method here to avoid having the code below a hundred
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4345
     times in variuos places."
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4346
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4347
    |rest|
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4348
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4349
    (self startsWith:keyword) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4350
	rest := self copyFrom:(keyword size + 1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4351
	strip ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4352
	    rest := rest withoutSeparators
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4353
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4354
	^ rest
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4355
    ].
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4356
    ^ nil
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4357
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4358
    "
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4359
     'foo: hello world' restAfter:'foo:' withoutSeparators:true
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4360
     'funny: something' restAfter:'foo:' withoutSeparators:true
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4361
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4362
     'foo:     hello world    ' restAfter:'foo:' withoutSeparators:true
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4363
     'foo:     hello world    ' restAfter:'foo:' withoutSeparators:false
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4364
    "
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4365
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4366
    "Created: 25.11.1995 / 11:04:18 / cg"
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4367
!
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4368
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4369
splitAtString:subString withoutSeparators:strip
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4370
    "If the receiver is of the form:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4371
	<left><subString><right>
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4372
     return a collection containing left and right only.
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4373
     If strip is true, remove whiteSpace in the returned substrings."
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4374
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4375
    |idx left right|
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4376
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4377
    (idx := self indexOfSubCollection:subString) ~~ 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4378
	left := self copyTo:(idx - 1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4379
	right := self copyFrom:(idx + subString size).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4380
	strip ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4381
	    left := left withoutSeparators.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4382
	    right := right withoutSeparators.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4383
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4384
	^ StringCollection with:left with:right
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4385
    ].
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4386
    self error:'substring not present in receiver' mayProceed:true.
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4387
    ^ self
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4388
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4389
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4390
     'hello -> world' splitAtString:'->' withoutSeparators:false
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4391
     'hello -> world' splitAtString:'->' withoutSeparators:true
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4392
     'hello -> ' splitAtString:'->' withoutSeparators:true
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  4393
     'hello > error' splitAtString:'->' withoutSeparators:true
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4394
    "
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4395
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  4396
    "Created: 25.11.1995 / 11:04:18 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4397
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4398
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4399
!CharacterArray methodsFor:'displaying'!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4400
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4401
displayOn:aGC x:x y:y from:start to:stop
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4402
    "display the receiver on a GC"
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4403
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4404
    self displayOn:aGC x:x y:y from:start to:stop opaque:false
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4405
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4406
    "Modified: 12.5.1996 / 12:49:33 / cg"
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4407
!
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4408
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4409
displayOn:aGC x:x y:y from:start to:stop opaque:opaque
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4410
    "display the receiver on a GC"
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4411
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4412
    "q&d hack"
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4413
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4414
    (start == 1 and:[stop == self size]) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4415
	self displayOn:aGC x:x y:y opaque:opaque.
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4416
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4417
	(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
  4418
    ].
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4419
!
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4420
7082
675482728016 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7022
diff changeset
  4421
displayOn:aGc x:x y:y opaque:opaque
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4422
    "display the receiver in a graphicsContext - this method allows
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4423
     strings to be used like DisplayObjects."
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4424
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4425
    |s|
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4426
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4427
    s := self string.
7082
675482728016 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7022
diff changeset
  4428
    opaque ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4429
	aGc displayOpaqueString:s x:x y:y.
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4430
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4431
	aGc displayString:s x:x y:y.
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4432
    ].
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  4433
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  4434
    "Modified: 11.5.1996 / 14:42:48 / cg"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  4435
!
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  4436
2762
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4437
displayOpaqueOn:aGC x:x y:y from:start to:stop
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4438
    "display the receiver on a GC"
59c71fa02ba2 displayOn / displayOpaqueOn fixed
ca
parents: 2760
diff changeset
  4439
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  4440
    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
  4441
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  4442
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4443
!CharacterArray methodsFor:'emphasis'!
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4444
11632
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4445
actionForAll:aBlock
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4446
    "change the action block of all characters.
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4447
     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
  4448
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4449
    ^ self asText actionForAll:aBlock
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4450
!
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4451
5732
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4452
allBold
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4453
    "return a text object representing the receiver, but all boldified"
5732
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4454
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4455
    "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
  4456
    Text isNil ifTrue:[^ self].
5732
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4457
    ^ self asText allBold
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4458
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4459
    "
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4460
     Transcript showCR:'hello' asText allBold
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4461
     Transcript showCR:'hello' allBold
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4462
    "
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4463
!
7b5effa6816e allBold added
Claus Gittinger <cg@exept.de>
parents: 5714
diff changeset
  4464
5898
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4465
allItalic
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4466
    "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
  4467
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4468
    "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
  4469
    Text isNil ifTrue:[^ self].
5898
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4470
    ^ self asText allItalic
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4471
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4472
    "
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4473
     Transcript showCR:'hello' asText allItalic
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4474
     Transcript showCR:'hello' allItalic
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4475
    "
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4476
!
7bc4f1593b4e allItalic now understood by CharacterArray
Claus Gittinger <cg@exept.de>
parents: 5848
diff changeset
  4477
11345
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4478
allStrikedOut
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4479
    "return a text object representing the receiver, but all in strikeout"
11345
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4480
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4481
    "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
  4482
    Text isNil ifTrue:[^ self].
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4483
    ^ self asText allStrikedOut
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4484
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4485
    "
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4486
     Transcript showCR:'hello' asText allStrikedOut
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4487
     Transcript showCR:'hello' allStrikedOut
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4488
    "
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4489
!
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4490
10862
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4491
allUnderlined
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4492
    "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
  4493
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4494
    "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
  4495
    Text isNil ifTrue:[^ self].
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4496
    ^ self asText allUnderlined
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4497
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4498
    "
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4499
     Transcript showCR:'hello' asText allUnderlined
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4500
     Transcript showCR:'hello' allUnderlined
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4501
    "
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4502
!
0fa5e12415af *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10841
diff changeset
  4503
19774
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  4504
asActionLinkTo:aBlock
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  4505
    "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
  4506
     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
  4507
     (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
  4508
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  4509
    "/ the blue may become a user-setting some time later..
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  4510
    ^ (self actionForAll:aBlock) withColor:(Color blue)
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  4511
!
0d448cd774fc #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19762
diff changeset
  4512
6228
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4513
colorizeAllWith:aColor
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4514
    "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
  4515
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4516
    "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
  4517
    Text isNil ifTrue:[^ self].
6228
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4518
    ^ self asText colorizeAllWith:aColor
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4519
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4520
    "
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4521
     Transcript showCR:('hello' colorizeAllWith:Color red)
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4522
     Transcript showCR:('world' colorizeAllWith:Color green darkened)
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4523
    "
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4524
!
3b39832651c9 added #colorizeAllWith:
Claus Gittinger <cg@exept.de>
parents: 6187
diff changeset
  4525
12330
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4526
colorizeAllWith:fgColor on:bgColor
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4527
    "return a text object representing the receiver, but all colorized with
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4528
     both fg and background color"
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4529
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4530
    "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
  4531
    Text isNil ifTrue:[^ self].
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4532
    ^ self asText colorizeAllWith:fgColor on:bgColor
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4533
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4534
    "
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4535
     Transcript showCR:('hello' colorizeAllWith:Color red on:Color yellow)
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4536
     Transcript showCR:('world' colorizeAllWith:Color red)
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4537
    "
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4538
!
f9b57b0b8a8b added: #colorizeAllWith:on:
Claus Gittinger <cg@exept.de>
parents: 12326
diff changeset
  4539
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4540
emphasis
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4541
    "return the emphasis.
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4542
     Since characterArrays do not hold any emphasis information,
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4543
     nil (no emphasis) is returned here."
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4544
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4545
    ^ RunArray new:self size withAll:nil
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4546
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4547
    "Created: 14.5.1996 / 13:58:58 / cg"
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4548
!
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4549
6655
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4550
emphasis:emphasisCollection
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4551
    ^ self asText emphasis:emphasisCollection
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4552
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4553
    "
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4554
     Transcript showCR:('hello' emphasis:#(bold bold bold bold bold))
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4555
    "
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4556
!
08e098ce6534 +emphasis:
Michael Beyl <mb@exept.de>
parents: 6653
diff changeset
  4557
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4558
emphasisAt:characterIndex
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4559
    "return the emphasis at some index.
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4560
     Since characterArrays do not hold any emphasis information,
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4561
     nil (no emphasis) is returned here."
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4562
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4563
    ^ nil
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4564
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4565
    "Created: 11.5.1996 / 14:13:27 / cg"
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4566
!
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4567
11632
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4568
emphasisAtPoint:aPoint on:aGC
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4569
    "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
  4570
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4571
    ^ nil
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4572
!
b82e9f3cabd1 new: #actionForAll: #emphasisAtPoint:on:
Stefan Vogel <sv@exept.de>
parents: 11630
diff changeset
  4573
1396
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4574
emphasisCollection
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4575
    "return the emphasis.
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4576
     Since characterArrays do not hold any emphasis information,
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4577
     nil (no emphasis) is returned here."
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4578
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4579
    ^ RunArray new:(self size)
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4580
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4581
    "Created: 14.5.1996 / 13:58:58 / cg"
5b5386311dbd concatenating mixed texts & strings
Claus Gittinger <cg@exept.de>
parents: 1393
diff changeset
  4582
    "Modified: 14.5.1996 / 15:02:29 / cg"
3404
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  4583
!
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  4584
11919
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4585
emphasiseFrom:start to:stop with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4586
    "set to the emphasis within some range. return the receiver"
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4587
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4588
    ^ self asText emphasiseFrom:start to:stop with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4589
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4590
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4591
     'hello' emphasiseFrom:2 with:#italic
11919
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4592
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4593
     Transcript showCR:('hello' emphasiseFrom:2 with:#italic)
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4594
    "
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4595
!
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4596
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4597
emphasiseFrom:start with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4598
    "set to the emphasis within some range. return the receiver"
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4599
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4600
    ^ self emphasiseFrom:start to:(self size) with:newEmphasis
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4601
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4602
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  4603
     'hello' emphasiseFrom:2 with:#italic
11919
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4604
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4605
     Transcript showCR:('hello' emphasiseFrom:2 with:#italic)
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4606
    "
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4607
!
315d79f867ba *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11905
diff changeset
  4608
3404
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  4609
emphasizeAllWith:emphasis
12326
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4610
    "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
  4611
c67f12213ddb comment/format in:5 methods
Claus Gittinger <cg@exept.de>
parents: 12319
diff changeset
  4612
    "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
  4613
    Text isNil ifTrue:[^ self].
3404
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  4614
    ^ self asText emphasizeAllWith:emphasis
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  4615
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  4616
    "
5a9ab54bcbd5 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3337
diff changeset
  4617
     Transcript showCR:('hello' emphasizeAllWith:#bold)
3599
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  4618
     Transcript showCR:('hello' emphasizeAllWith:(#color -> Color red))
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  4619
     Transcript showCR:('hello' emphasizeAllWith:(#color -> Color red))
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  4620
    "
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  4621
fea09a812f55 comment
Claus Gittinger <cg@exept.de>
parents: 3578
diff changeset
  4622
    "Modified: / 17.6.1998 / 12:51:44 / cg"
5097
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  4623
!
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  4624
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  4625
makeSelectorBoldIn:aClass
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4626
    "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
  4627
     Change myself to boldify the selector.
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4628
     Not yet implemented (could easily use the syntaxHighlighter for this ...).
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4629
     For protocol compatibility with other smalltalks"
5097
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  4630
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  4631
    ^ self
4aa597a8a724 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4989
diff changeset
  4632
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4633
    "Created: / 13-12-1999 / 21:49:24 / cg"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4634
!
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4635
19762
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  4636
withColor:aColorOrColorSymbol
16697
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  4637
    "return a text object representing the receiver, but all colorized"
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  4638
19762
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  4639
    aColorOrColorSymbol isSymbol ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4640
	^ self colorizeAllWith:(Color perform:aColorOrColorSymbol)
19762
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  4641
    ].
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  4642
    ^ self colorizeAllWith:aColorOrColorSymbol
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  4643
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  4644
    "
4d0f75065bf1 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19757
diff changeset
  4645
     Transcript showCR:('hello' withColor:#red)
16697
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  4646
     Transcript showCR:('hello' withColor:Color red)
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  4647
     Transcript showCR:('world' withColor:Color green darkened)
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  4648
    "
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  4649
!
c462faf821b7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16693
diff changeset
  4650
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4651
withoutAnyColorEmphasis
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4652
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4653
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4654
    ^ self
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4655
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4656
    "Created: / 06-03-2012 / 18:15:38 / cg"
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  4657
!
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  4658
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4659
withoutBackgroundColorEmphasis
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4660
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4661
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4662
    ^ self
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4663
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4664
    "Modified (comment): / 06-03-2012 / 18:14:27 / cg"
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4665
!
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4666
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  4667
withoutEmphasis:emphasisToRemove
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4668
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4669
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  4670
    ^ self
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4671
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4672
    "Modified (comment): / 06-03-2012 / 18:14:29 / cg"
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4673
!
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4674
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4675
withoutForegroundColorEmphasis
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4676
    "for protocol compatibility with Text"
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4677
12396
0f75aad3a34c *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12343
diff changeset
  4678
    ^ self
14050
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4679
Claus Gittinger <cg@exept.de>
parents: 14014
diff changeset
  4680
    "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
  4681
! !
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  4682
7265
3b007758ff5b method category rename
Claus Gittinger <cg@exept.de>
parents: 7261
diff changeset
  4683
!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
  4684
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4685
asDenormalizedUnicodeString
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4686
    "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
  4687
     This replaces diacritical chars (umlauts, accented chars etc) by
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4688
     a sequence with combination characters.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4689
     (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
  4690
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4691
    |map outStream mapChar|
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4692
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4693
    map := self class unicodeDenormalizationMap.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4694
    
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4695
    self containsNon7BitAscii ifFalse:[^ self]. "/ I cannot contain any
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4696
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4697
    mapChar := 
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4698
        [:char |
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4699
            |mappedChars|
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4700
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4701
            (mappedChars := map at:char ifAbsent:nil) notNil ifTrue:[ 
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4702
                mappedChars do:mapChar.
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4703
            ] ifFalse:[
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4704
                outStream nextPut:char.        
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4705
            ].
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4706
        ].
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4707
        
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4708
    outStream := WriteStream on:(Unicode16String new:self size).
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4709
    self do:mapChar.        
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4710
    ^ outStream contents asSingleByteStringIfPossible.
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4711
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4712
    "
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4713
     'Ö' asDenormalizedUnicodeString 
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4714
     'aÖÄx' asDenormalizedUnicodeString 
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4715
     'abc' asDenormalizedUnicodeString 
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4716
     'ṩ'  asString asDenormalizedUnicodeString 
20013
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4717
    "
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4718
!
d2c0fcf7ac29 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20012
diff changeset
  4719
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
  4720
asNormalizedUnicodeString
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4721
    "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
  4722
     This replaces combination characters by corresponding single characters.
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4723
     (i.e. diaresis and other combining diacriticals in the 0x03xx range)"
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4724
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4725
    |outStream prevChar map mapEntries mappedChar|
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4726
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4727
    map := self class unicodeNormalizationMap.
20017
c52f5f68f9fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20014
diff changeset
  4728
     
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4729
    self bitsPerCharacter <= 8 ifTrue:[^ self]. "/ I cannot contain any overtypes
20017
c52f5f68f9fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20014
diff changeset
  4730
    (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
  4731
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4732
    outStream := WriteStream on:(self species new:self size).
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4733
    self do:[:char |
20017
c52f5f68f9fb #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20014
diff changeset
  4734
        ((char unicodeBlock == #'COMBINING_DIACRITICAL_MARKS')
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4735
          and:[ (mapEntries := map at:char ifAbsent:nil) notNil
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4736
          and:[ (mappedChar := mapEntries at:prevChar ifAbsent:nil) notNil ]]) ifTrue:[ 
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4737
            prevChar := mappedChar.
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4738
        ] ifFalse:[
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4739
            prevChar notNil ifTrue:[ outStream nextPut:prevChar].        
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4740
            prevChar := char
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4741
        ].
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4742
    ].        
20011
d94333985171 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 20010
diff changeset
  4743
    prevChar notNil ifTrue:[ outStream nextPut:prevChar].        
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4744
    ^ outStream contents asSingleByteStringIfPossible.
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4745
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4746
    "
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4747
     self unicodeNormalizationMap
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4748
     ('O' , (Character value:16r0308)) asNormalizedUnicodeString -> 'Ö'
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4749
     ('O' , (Character value:16r0308) ,
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4750
      'A' , (Character value:16r0308)) asNormalizedUnicodeString -> 'ÖÄ'
20014
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4751
     ('s' , (Character value:16r0323) , (Character value:16r0307)) asNormalizedUnicodeString -> 'ṩ'
ae568b91d01b #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20013
diff changeset
  4752
     ('s' , (Character value:16r0307) , (Character value:16r0323)) asNormalizedUnicodeString -> 'ṩ'
20010
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4753
    "
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4754
!
743aeb190ee9 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 20006
diff changeset
  4755
12767
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  4756
decodeAsLiteralArray
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  4757
    "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
  4758
     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
  4759
     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
  4760
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  4761
    ^ self
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  4762
!
17d2c7268065 Prepare for changing superclass of CharacterArray from ByteArray to UninterpretedBytes
Stefan Vogel <sv@exept.de>
parents: 12679
diff changeset
  4763
991
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
  4764
decodeFrom:encodingSymbol
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4765
    "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
  4766
     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
  4767
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  4768
    |myEncoding encoder|
7950
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  4769
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  4770
    encodingSymbol isNil ifTrue:[^ self].
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  4771
    myEncoding := self encoding.
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  4772
    encodingSymbol == myEncoding ifTrue:[^ self].
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  4773
1a64875be502 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7945
diff changeset
  4774
    encoder := CharacterEncoder encoderToEncodeFrom:(self encoding) into:encodingSymbol.
8124
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  4775
    encoder isNil ifTrue:[^ self].
ca774158b317 code cleanup (removed old obsolete encoding stuff)
Claus Gittinger <cg@exept.de>
parents: 8102
diff changeset
  4776
    ^ encoder decodeString:self.
991
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
  4777
!
f0b45a4b82d2 first attempt in encoding/decoding for different character representations (mac/msdos etc.)
Claus Gittinger <cg@exept.de>
parents: 986
diff changeset
  4778
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4779
encodeFrom:oldEncoding into:newEncoding
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4780
    ^ CharacterEncoder encodeString:self from:oldEncoding into:newEncoding
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  4781
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  4782
    "
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4783
     'äüö' encodeFrom:#iso8859 into:#utf8
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4784
     ('äüö' encodeFrom:#iso8859 into:#utf8) encodeFrom:#utf8 into:#unicode
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  4785
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4786
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4787
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4788
rot13
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4789
     "Usenet: from `rotate alphabet 13 places']
6835
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  4790
      The simple Caesar-cypher encryption that replaces each English
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4791
      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
  4792
      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
  4793
      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
  4794
      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
  4795
      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
  4796
      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
  4797
      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
  4798
11865
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4799
    ^ self rot:13
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4800
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4801
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4802
     'hello world' rot13
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  4803
     'hello world' rot13 rot13
6835
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  4804
    "
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  4805
!
bdb2cb03200c added utf8Decode with 8-bit chars only
Claus Gittinger <cg@exept.de>
parents: 6834
diff changeset
  4806
11865
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4807
rot:n
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4808
     "Usenet: from `rotate alphabet N places']
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4809
      The simple Caesar-cypher encryption that replaces each English
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4810
      letter with the one N places forward or back along the alphabet,
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4811
      so that 'The butler did it!!' becomes 'Gur ohgyre qvq vg!!' by rot 13
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4812
      Most Usenet news reading and posting programs include a rot13 feature.
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4813
      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
  4814
      to open -- e.g., for posting things that might offend some readers, or spoilers.
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4815
      A major advantage of rot13 over rot(N) for other N is that it
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4816
      is self-inverse, so the same code can be used for encoding and decoding."
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4817
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4818
    ^ self species
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4819
	streamContents:[:aStream |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4820
	    self do:[:char |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4821
		aStream nextPut:(char rot:n) ]]
11865
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4822
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4823
    "
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4824
     'hello world' rot:13
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4825
     ('hello world' rot:13) rot:13
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4826
    "
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4827
!
Claus Gittinger <cg@exept.de>
parents: 11861
diff changeset
  4828
15656
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4829
utf16Encoded
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4830
    "Return my UTF-16 representation as a new TwoByteString"
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4831
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4832
    |s|
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4833
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4834
    s := WriteStream on:(TwoByteString uninitializedNew:self size).
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4835
    s nextPutAllUtf16:self.
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4836
    ^ s contents
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4837
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4838
    "
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4839
     'abcde1234' utf16Encoded
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  4840
     'abcdeäöüß' utf16Encoded
15656
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4841
    "
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4842
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4843
    "Modified: / 11-05-2010 / 19:12:37 / cg"
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4844
!
82aca5063e96 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15628
diff changeset
  4845
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4846
utf8Encoded
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4847
    "return the UTF-8 representation of a Unicode string.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4848
     The resulting string is only useful to be stored on some external file,
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4849
     not for being used inside ST/X."
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4850
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4851
    |string stream|
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4852
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4853
    string := self string.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4854
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4855
    "/ avoid creation of new strings if possible
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4856
    string containsNon7BitAscii ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4857
        ^ string asSingleByteString
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4858
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4859
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4860
    "make it size 2 for 1-byte strings"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4861
    stream := WriteStream on:(String uninitializedNew:(1 + (string size * 3 // 2))).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4862
    string utf8EncodedOn:stream.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4863
    ^ stream contents.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4864
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4865
    "
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4866
     'hello' utf8Encoded asByteArray                             #[104 101 108 108 111]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4867
     (Character value:16r40) asString utf8Encoded asByteArray    #[64]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4868
     (Character value:16r7F) asString utf8Encoded asByteArray    #[127]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4869
     (Character value:16r80) asString utf8Encoded asByteArray    #[194 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4870
     (Character value:16rFF) asString utf8Encoded asByteArray    #[195 191]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4871
     (Character value:16r100) asString utf8Encoded asByteArray   #[196 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4872
     (Character value:16r200) asString utf8Encoded asByteArray   #[200 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4873
     (Character value:16r400) asString utf8Encoded asByteArray   #[208 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4874
     (Character value:16r800) asString utf8Encoded asByteArray   #[224 160 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4875
     (Character value:16r1000) asString utf8Encoded asByteArray  #[225 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4876
     (Character value:16r2000) asString utf8Encoded asByteArray  #[226 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4877
     (Character value:16r4000) asString utf8Encoded asByteArray  #[228 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4878
     (Character value:16r8000) asString utf8Encoded asByteArray  #[232 128 128]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4879
     (Character value:16rFFFF) asString utf8Encoded asByteArray  #[239 191 191]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4880
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  4881
     'abcde1234' asUnicode32String utf8Encoded
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  4882
     'abcdeäöüß' asUnicode32String utf8Encoded
12925
5c0a9a633ca1 comment/format in: #utf8Encoded
Claus Gittinger <cg@exept.de>
parents: 12912
diff changeset
  4883
    "
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4884
!
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4885
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4886
utf8EncodedOn:aStream
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4887
    "return the UTF-8 representation of a Unicode string.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4888
     The resulting string is only useful to be stored on some external file,
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4889
     not for being used inside ST/X."
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4890
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4891
    |string 
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4892
     stringSize "{ Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4893
     codePoint "{Class: SmallInteger }" 
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4894
     v "{Class: SmallInteger }"
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4895
     character b1 b2 b3 b4 b5|
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4896
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4897
    string := self string.
19837
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4898
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4899
    "/ avoid creation of new strings if possible
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4900
    string containsNon7BitAscii ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4901
        aStream nextPutAll:string asSingleByteString.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4902
        ^ self.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4903
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4904
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4905
    stringSize := string size.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4906
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4907
    1 to:stringSize do:[:idx |
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4908
        character := string at:idx.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4909
        codePoint := character codePoint.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4910
        codePoint < 16r80 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4911
            aStream nextPutByte:codePoint.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4912
        ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4913
            b1 := (codePoint bitAnd:16r3F) bitOr:2r10000000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4914
            v := codePoint bitShift:-6.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4915
            v <= 16r1F ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4916
                aStream nextPutByte:(v bitOr:2r11000000).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4917
                aStream nextPutByte:b1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4918
            ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4919
                b2 := (v bitAnd:16r3F) bitOr:2r10000000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4920
                v := v bitShift:-6.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4921
                v <= 16r0F ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4922
                    aStream nextPutByte:(v bitOr:2r11100000).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4923
                    aStream nextPutByte:b2; nextPutByte:b1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4924
                ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4925
                    b3 := (v bitAnd:16r3F) bitOr:2r10000000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4926
                    v := v bitShift:-6.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4927
                    v <= 16r07 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4928
                        aStream nextPutByte:(v bitOr:2r11110000).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4929
                        aStream nextPutByte:b3; nextPutByte:b2; nextPutByte:b1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4930
                    ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4931
                        b4 := (v bitAnd:16r3F) bitOr:2r10000000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4932
                        v := v bitShift:-6.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4933
                        v <= 16r03 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4934
                            aStream nextPutByte:(v bitOr:2r11111000).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4935
                            aStream nextPutByte:b4; nextPutByte:b3; nextPutByte:b2; nextPutByte:b1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4936
                        ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4937
                            b5 := (v bitAnd:16r3F) bitOr:2r10000000.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4938
                            v := v bitShift:-6.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4939
                            v <= 16r01 ifTrue:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4940
                                aStream nextPutByte:(v bitOr:2r11111100).
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4941
                                aStream nextPutByte:b5; nextPutByte:b4; nextPutByte:b3; nextPutByte:b2; nextPutByte:b1.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4942
                            ] ifFalse:[
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4943
                                "/ cannot happen - we only support up to 30 bit characters
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4944
                                EncodingError raiseWith:character errorString:'codePoint > 31bit in #utf8Encode'.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4945
                            ]
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4946
                        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4947
                    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4948
                ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4949
            ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4950
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4951
    ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4952
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4953
    "
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4954
        String streamContents:[:s|
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4955
            'hallo' utf8EncodedOn:s
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4956
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4957
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4958
        ByteArray streamContents:[:s|
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4959
            'hallo' utf8EncodedOn:s
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4960
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4961
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4962
        String streamContents:[:s|
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4963
            'abcdeäöüß' asUnicode32String utf8EncodedOn:s
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4964
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4965
.
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4966
        ByteArray streamContents:[:s|
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4967
            'abcdeäöüß' asUnicode32String utf8EncodedOn:s
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4968
        ].
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4969
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4970
        '/tmp/bytes' asFilename writingFileDo:[:s|
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4971
            'abcdeäöüß' utf8EncodedOn:s
06923e87ba53 #TUNING by stefan
Stefan Vogel <sv@exept.de>
parents: 19785
diff changeset
  4972
        ].
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  4973
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4974
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  4975
11345
3f5e4cc6ae91 changed #allStrikedOut
Claus Gittinger <cg@exept.de>
parents: 11329
diff changeset
  4976
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4977
!CharacterArray methodsFor:'matching - glob expressions'!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4978
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4979
compoundMatch:aString
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4980
    "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
  4981
     consisting of multiple simple GLOB patterns, separated by semicolons.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4982
     This is usable with fileName pattern fields.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4983
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4984
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  4985
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  4986
     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
  4987
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4988
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  4989
    ^ self compoundMatch:aString caseSensitive:true withoutSeparators:false
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4990
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4991
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4992
     'f*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4993
     'b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4994
     'f*;b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4995
     'f*;b*' match:'bar'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4996
     'f*;b*' compoundMatch:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4997
     'f*;b*' compoundMatch:'bar'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4998
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  4999
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5000
    "Modified: / 30.1.1998 / 11:40:18 / stefan"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5001
    "Modified: / 16.12.1999 / 01:22:08 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5002
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5003
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5004
compoundMatch:aString caseSensitive:caseSensitive
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5005
    "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
  5006
     consisting of multiple simple GLOB patterns, separated by semicolons.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5007
     This is usable with fileName pattern fields.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5008
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5009
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5010
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5011
     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
  5012
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5013
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5014
    ^self compoundMatch:aString caseSensitive:caseSensitive withoutSeparators:false
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5015
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5016
    "
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5017
     'f*' match:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5018
     'b*' match:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5019
     'f*;b*' match:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5020
     'f*;b*' match:'bar'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5021
     'f*;b*' compoundMatch:'foo'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5022
     'f*;b*' compoundMatch:'bar'
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5023
     'f*;b*' compoundMatch:'Foo' caseSensitive:false
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5024
     'f*;b*' compoundMatch:'Bar' caseSensitive:false
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5025
     'f*;b*' compoundMatch:'ccc' caseSensitive:false
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5026
    "
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5027
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5028
    "Modified: / 15.4.1997 / 15:50:33 / cg"
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5029
    "Modified: / 30.1.1998 / 11:40:18 / stefan"
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5030
    "Created: / 16.12.1999 / 01:21:35 / cg"
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5031
!
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5032
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5033
compoundMatch:aString caseSensitive:caseSensitive withoutSeparators:withoutSeparators
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5034
    "like match, but the receiver may be a compound match pattern,
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5035
     consisting of multiple simple GLOB patterns, separated by semicolons.
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5036
     If withoutSeparators is true, spaces around individual patterns are stripped off.
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5037
     This is usable with fileName pattern fields.
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5038
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5039
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5040
	     NOT the ST-80 meaning.
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5041
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5042
     NOTICE: the receiver is the match pattern"
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5043
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5044
    |matchers|
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5045
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5046
    matchers := self asCollectionOfSubstringsSeparatedBy:$;.
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5047
    withoutSeparators ifTrue:[ matchers := matchers collect:[:each | each withoutSeparators] ].
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5048
    ^ matchers
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5049
	contains:[:aPattern |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5050
	    aPattern match:aString caseSensitive:caseSensitive escapeCharacter:nil
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5051
	].
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5052
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5053
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5054
     'f*' match:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5055
     'b*' match:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5056
     'f*;b*' match:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5057
     'f*;b*' match:'bar'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5058
     'f*;b*' compoundMatch:'foo'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5059
     'f*;b*' compoundMatch:'bar'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5060
     'f*;b*' compoundMatch:'Foo' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5061
     'f*;b*' compoundMatch:'Bar' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5062
     'f*;b*' compoundMatch:'ccc' caseSensitive:false
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5063
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5064
     'f* ; b*' compoundMatch:'foo'
15890
bb7a0307b078 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15829
diff changeset
  5065
     'f* ; b*' compoundMatch:'foo' caseSensitive:true withoutSeparators:true
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5066
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5067
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5068
    "Modified: / 15.4.1997 / 15:50:33 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5069
    "Modified: / 30.1.1998 / 11:40:18 / stefan"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5070
    "Created: / 16.12.1999 / 01:21:35 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5071
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5072
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5073
compoundMatch:aString ignoreCase:ignoreCase
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5074
    <resource: #obsolete>
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5075
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5076
    "like match, but the receiver may be a compound match pattern,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5077
     consisting of multiple simple GLOB patterns, separated by semicolons.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5078
     This is usable with fileName pattern fields.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5079
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5080
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5081
	     NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5082
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5083
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5084
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5085
    ^ self compoundMatch:aString caseSensitive:ignoreCase not
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5086
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5087
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5088
     'f*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5089
     'b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5090
     'f*;b*' match:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5091
     'f*;b*' match:'bar'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5092
     'f*;b*' compoundMatch:'foo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5093
     'f*;b*' compoundMatch:'bar'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5094
     'f*;b*' compoundMatch:'Foo' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5095
     'f*;b*' compoundMatch:'Bar' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5096
     'f*;b*' compoundMatch:'ccc' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5097
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5098
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5099
    "Modified: / 15.4.1997 / 15:50:33 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5100
    "Modified: / 30.1.1998 / 11:40:18 / stefan"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5101
    "Created: / 16.12.1999 / 01:21:35 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5102
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5103
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5104
findMatchString:matchString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5105
    "like findString/indexOfSubCollection, but allowing GLOB match patterns.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5106
     find matchstring; if found, return the index;
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5107
     if not found, return 0.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5108
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5109
     NOTICE: match-meta character interpretation is like in unix-matching,
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5110
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5111
     NOTICE: this GLOB, which is different from regex matching (see matchesRegex:)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5112
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5113
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5114
    ^ self findMatchString:matchString startingAt:1 caseSensitive:true ifAbsent:0
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5115
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5116
    "
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5117
      1234567890123
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5118
     'hello world bla foo baz' findMatchString:'b* '
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5119
    "
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5120
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5121
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5122
findMatchString:matchString startingAt:index
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5123
    "like findString, but allowing GLOB match patterns.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5124
     find matchstring, starting at index. if found, return the index;
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5125
     if not found, return 0.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5126
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5127
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5128
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5129
     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
  5130
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5131
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5132
    ^ self findMatchString:matchString startingAt:index caseSensitive:true ifAbsent:0
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5133
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5134
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5135
findMatchString:matchString startingAt:index caseSensitive:caseSensitive ifAbsent:exceptionBlock
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5136
    "like findString, but allowing GLOB match patterns.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5137
     find matchstring, starting at index. if found, return the index;
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5138
     if not found, return the result of evaluating exceptionBlock.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5139
     This is a q&d hack - not very efficient.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5140
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5141
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5142
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5143
     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
  5144
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5145
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5146
    |firstChar firstSet
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5147
     startIndex "{ Class: SmallInteger }"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5148
     matchSize  "{ Class: SmallInteger }"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5149
     mySize     "{ Class: SmallInteger }"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5150
     realMatchString lcChar ucChar|
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5151
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5152
    matchSize := matchString size.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5153
    matchSize == 0 ifTrue:[^ index]. "empty string matches"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5154
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5155
    realMatchString := matchString.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5156
    (realMatchString endsWith:$*) ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5157
	realMatchString := realMatchString , '*'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5158
	matchSize := matchSize + 1
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5159
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5160
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5161
    mySize := self size.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5162
    firstChar := realMatchString at:1.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5163
    firstChar == self class matchEscapeCharacter ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5164
	firstChar := realMatchString at:2.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5165
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5166
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5167
    firstChar asString includesMatchCharacters ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5168
	index to:mySize do:[:col |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5169
	    (realMatchString match:self from:col to:mySize caseSensitive:caseSensitive)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5170
	    ifTrue:[^ col]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5171
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5172
	^ exceptionBlock value.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5173
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5174
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5175
    lcChar := firstChar asLowercase.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5176
    ucChar := firstChar asUppercase.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5177
    (caseSensitive not and:[ lcChar ~= ucChar ]) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5178
	firstSet := Array with:ucChar with:lcChar.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5179
	startIndex := self indexOfAny:firstSet startingAt:index.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5180
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5181
	startIndex := self indexOf:firstChar startingAt:index.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5182
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5183
    [startIndex == 0] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5184
	(realMatchString match:self from:startIndex to:mySize caseSensitive:caseSensitive)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5185
	ifTrue:[^ startIndex].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5186
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5187
	firstSet notNil ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5188
	    startIndex := self indexOfAny:firstSet startingAt:(startIndex + 1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5189
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5190
	    startIndex := self indexOf:firstChar startingAt:(startIndex + 1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5191
	].
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5192
    ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5193
    ^ exceptionBlock value
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5194
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5195
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5196
     'one two three four' findMatchString:'o[nu]'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5197
     'one two three four' findMatchString:'o[nu]' startingAt:3
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5198
     '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
  5199
     '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
  5200
     '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
  5201
     '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
  5202
      12345678901234567890
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5203
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5204
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5205
    "Modified: 13.9.1997 / 06:31:22 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5206
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5207
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5208
findMatchString:matchString startingAt:index ignoreCase:ignoreCase ifAbsent:exceptionBlock
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5209
    <resource: #obsolete>
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5210
    "like findString, but allowing GLOB match patterns.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5211
     find matchstring, starting at index. if found, return the index;
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5212
     if not found, return the result of evaluating exceptionBlock.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5213
     This is a q&d hack - not very efficient.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5214
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5215
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5216
	     NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5217
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5218
     NOTICE: the argument is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5219
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5220
    ^ self
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5221
	findMatchString:matchString startingAt:index caseSensitive:ignoreCase not ifAbsent:exceptionBlock
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5222
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5223
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5224
     'one two three four' findMatchString:'o[nu]'
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5225
     'one two three four' findMatchString:'o[nu]' startingAt:3
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5226
     '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
  5227
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5228
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5229
    "Modified: 13.9.1997 / 06:31:22 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5230
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5231
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5232
globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5233
    "taking the receiver as a GLOB pattern,
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5234
     return a corresponding regex pattern.
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5235
     As regex does provide information about the matching substring,
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  5236
     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
  5237
     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
  5238
     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
  5239
     (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
  5240
      in typical real life)"
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5241
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5242
    ^ self species streamContents:[:s |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5243
	|addCharacter|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5244
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5245
	addCharacter :=
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5246
	    [:ch |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5247
		ch isLetterOrDigit ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5248
		    s nextPut:$\.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5249
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5250
		s nextPut:ch
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5251
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5252
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5253
	(String matchScanArrayFrom:self) do:[:matchEntry |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5254
	    matchEntry isCharacter ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5255
		addCharacter value:matchEntry
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5256
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5257
		matchEntry == #anyString ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5258
		    s nextPutAll:'.*'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5259
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5260
		    matchEntry == #any ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5261
			s nextPut:$.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5262
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5263
			matchEntry isString ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5264
			    |set min max|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5265
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5266
			    s nextPut:$[.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5267
			    set := matchEntry copy sort.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5268
			    min := set min.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5269
			    max := set max.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5270
			    set asSet = (min to:max) asSet ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5271
				addCharacter value:min.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5272
				s nextPut:$-.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5273
				addCharacter value:max.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5274
			    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5275
				set do:addCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5276
			    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5277
			    s nextPut:$].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5278
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5279
			    self halt.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5280
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5281
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5282
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5283
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5284
	].
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  5285
    ].
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5286
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5287
    "
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5288
     'hello' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5289
     'hello*' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5290
     '*hello*' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5291
     'h###' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5292
     'h[0-9]' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5293
     'h[0-9][0-9][0-9]' globPatternAsRegexPattern
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5294
     'h[0-9]*' globPatternAsRegexPattern
19747
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  5295
     'h[-+]*' globPatternAsRegexPattern
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  5296
19747
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  5297
     'hello world' matches:'h*w'
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  5298
     'hello world' matchesRegex:('h*w' globPatternAsRegexPattern)
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  5299
     'hello world' matches:'h*d'
f9e14d358927 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19746
diff changeset
  5300
     'hello world' matchesRegex:('h*d' globPatternAsRegexPattern)
19746
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5301
    "
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5302
!
a08dda93b89a #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19743
diff changeset
  5303
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5304
includesMatchString:matchString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5305
    "like includesString, but allowing GLOB match patterns.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5306
     find matchstring; if found, return true, otherwise return false.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5307
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5308
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5309
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5310
     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
  5311
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5312
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5313
    ^ (self findMatchString:matchString) ~~ 0
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5314
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5315
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5316
     'hello world' includesMatchString:'h*'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5317
     'hello world' includesMatchString:'h[aeiou]llo'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5318
     'hello world' includesMatchString:'wor*'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5319
     'hello world' includesMatchString:'woR*'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5320
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5321
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5322
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5323
includesMatchString:matchString caseSensitive:caseSensitive
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5324
    "like includesString, but allowing GLOB match patterns.
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5325
     find matchstring; if found, return true, otherwise return false.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5326
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5327
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5328
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5329
     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
  5330
     NOTICE: the argument is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5331
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5332
    ^ (self findMatchString:matchString startingAt:1 caseSensitive:caseSensitive ifAbsent:0) ~~ 0
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5333
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5334
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5335
     'hello world' includesMatchString:'h*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5336
     'hello world' includesMatchString:'h*' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5337
     'Hello world' includesMatchString:'h*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5338
     'Hello world' includesMatchString:'h*' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5339
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5340
     'hello world' includesMatchString:'h[aeiou]llo' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5341
     'hello world' includesMatchString:'h[aeiou]llo' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5342
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5343
     'hello world' includesMatchString:'wor*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5344
     'hello world' includesMatchString:'wor*' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5345
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5346
     'hello world' includesMatchString:'woR*' caseSensitive:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5347
     'hello world' includesMatchString:'woR*' caseSensitive:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5348
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5349
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5350
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5351
match:aString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5352
    "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
  5353
     characters $* (to match any string) or $# (to match any character).
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5354
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5355
     Lower/uppercase are considered different.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5356
     The escape character is the backQuote.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5357
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5358
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5359
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5360
     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
  5361
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5362
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5363
    ^ self match:aString from:1 to:aString size caseSensitive:true
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5364
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5365
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5366
     '\*f*' match:'f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5367
     '\*f*' match:'*f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5368
     '*\*f*' match:'*f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5369
     '*f*' match:'*f'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5370
     '*ute*' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5371
     '*uter' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5372
     'uter*' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5373
     '*ute*' match:''
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5374
     '[abcd]*' match:'computer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5375
     '[abcd]*' match:'komputer'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5376
     '*some*compl*ern*' match:'this is some more complicated pattern match'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5377
     '*some*compl*ern*' match:'this is another complicated pattern match'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5378
     '*-hh' match:'anton-h'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5379
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5380
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5381
    "Modified: / 9.6.1998 / 18:50:00 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5382
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5383
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5384
match:aString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5385
    "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
  5386
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5387
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5388
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5389
     The escape character is the backQuote.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5390
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5391
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5392
	     NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5393
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5394
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5395
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5396
    ^ self match:aString from:1 to:aString size caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5397
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5398
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5399
     '*ute*' match:'COMPUTER' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5400
     '*uter' match:'COMPUTER' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5401
     '[abcd]*' match:'computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5402
     '[abcd]*' match:'Computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5403
     '[a-k]*' match:'komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5404
     '[a-k]*' match:'zomputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5405
     '[a-k]*' match:'Komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5406
     '[a-k]*' match:'Komputer' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5407
     '*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
  5408
     '*some*compl*ern*' match:'this is another complicated pattern match' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5409
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5410
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5411
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5412
	    '[ab]*' match:sym caseSensitive:true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5413
	]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5414
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5415
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5416
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5417
	    '*at:*' match:sym caseSensitive:true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5418
	]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5419
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5420
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5421
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5422
    "Modified: 2.4.1997 / 17:28:58 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5423
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5424
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5425
match:aString caseSensitive:caseSensitive escapeCharacter:escape
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5426
    "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
  5427
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5428
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5429
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5430
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5431
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5432
	     NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5433
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5434
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5435
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5436
    ^ self match:aString from:1 to:aString size caseSensitive:caseSensitive escapeCharacter:escape
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5437
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5438
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5439
     '*ute*' match:'COMPUTER' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5440
     '*uter' match:'COMPUTER' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5441
     '[abcd]*' match:'computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5442
     '[abcd]*' match:'Computer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5443
     '[a-k]*' match:'komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5444
     '[a-k]*' match:'zomputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5445
     '[a-k]*' match:'Komputer' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5446
     '[a-k]*' match:'Komputer' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5447
     '*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
  5448
     '*some*compl*ern*' match:'this is another complicated pattern match' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5449
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5450
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5451
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5452
	    '[ab]*' match:sym caseSensitive:true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5453
	]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5454
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5455
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5456
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5457
	    '*at:*' match:sym caseSensitive:true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5458
	]
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5459
     ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5460
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5461
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5462
    "Modified: 2.4.1997 / 17:28:58 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5463
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5464
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5465
match:aString escapeCharacter:escape
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5466
    "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
  5467
     characters $* (to match any string) or $# (to match any character).
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5468
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5469
     Lower/uppercase are considered different.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5470
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5471
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5472
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5473
     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
  5474
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5475
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5476
    ^ 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
  5477
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5478
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5479
     'a\b\c\*' match:'a\b\c\d'
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5480
     'a\b\c\*' match:'a\b\c\d' escapeCharacter:nil
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5481
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5482
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5483
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5484
match:aString from:start to:stop caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5485
    "return true if part of aString matches myself,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5486
     where self may contain GLOB meta-match
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5487
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5488
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5489
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5490
     The escape character is the backQuote.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5491
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5492
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5493
	     NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5494
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5495
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5496
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5497
    ^ self
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5498
	match:aString from:start to:stop caseSensitive:caseSensitive
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5499
	escapeCharacter:(self class matchEscapeCharacter)
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5500
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5501
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5502
     '*ute*' match:'12345COMPUTER' from:1 to:5 caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5503
     '*ute*' match:'12345COMPUTER' from:6 to:13 caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5504
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5505
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5506
    "Modified: / 10.11.1998 / 21:43:46 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5507
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5508
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5509
match:aString from:start to:stop caseSensitive:caseSensitive escapeCharacter:escape
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5510
    "return true if part of aString matches myself,
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5511
     where self may contain GLOB meta-match
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5512
     characters $* (to match any string) or $# (to match any character)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5513
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5514
     If caseSensitive is false, lower/uppercase are considered the same.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5515
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5516
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5517
	     NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5518
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5519
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5520
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5521
    |matchScanArray|
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5522
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5523
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5524
     keep the matchScanArray from the most recent match -
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5525
     avoids parsing the pattern over-and over if multiple searches
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5526
     are done with the same pattern.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5527
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5528
    (PreviousMatch notNil
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5529
    and:[PreviousMatch key = self]) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5530
	matchScanArray := PreviousMatch value
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5531
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5532
	matchScanArray := self class matchScanArrayFrom:self escapeCharacter:escape.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5533
	matchScanArray isNil ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5534
	    'CharacterArray [info]: invalid matchpattern:''' infoPrint. self infoPrint. ''' comparing for equality.' infoPrintCR.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5535
	    ^ self = aString
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5536
"/            ^ false
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5537
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5538
	PreviousMatch := self -> matchScanArray.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5539
    ].
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5540
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5541
    ^ self class
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5542
	matchScan:matchScanArray
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5543
	from:1 to:matchScanArray size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5544
	with:aString
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5545
	from:start to:stop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5546
	caseSensitive:caseSensitive
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5547
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5548
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5549
     '*ute*' match:'12345COMPUTER' from:1 to:5 caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5550
     '*ute*' match:'12345COMPUTER' from:6 to:13 caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5551
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5552
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5553
    "Modified: / 10.11.1998 / 21:43:46 / cg"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5554
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5555
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5556
match:aString from:start to:stop ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5557
    <resource: #obsolete>
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5558
    "return true if part of aString matches myself,
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5559
     where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5560
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5561
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5562
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5563
     The escape character is the backQuote.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5564
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5565
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5566
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5567
     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
  5568
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5569
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5570
    ^ self
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5571
	match:aString from:start to:stop caseSensitive:ignoreCase not
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5572
	escapeCharacter:(self class matchEscapeCharacter)
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5573
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5574
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5575
     '*ute*' match:'12345COMPUTER' from:1 to:5 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5576
     '*ute*' match:'12345COMPUTER' from:6 to:13 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5577
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5578
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5579
    "Modified: / 10.11.1998 / 21:43:46 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5580
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5581
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5582
match:aString from:start to:stop ignoreCase:ignoreCase escapeCharacter:escape
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5583
    <resource: #obsolete>
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5584
    "return true if part of aString matches myself,
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5585
     where self may contain GLOB meta-match
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5586
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5587
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5588
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5589
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5590
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5591
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5592
     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
  5593
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5594
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  5595
    ^ self
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5596
	match:aString from:start to:stop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5597
	caseSensitive:ignoreCase not
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5598
	escapeCharacter:escape
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5599
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5600
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5601
     '*ute*' match:'12345COMPUTER' from:1 to:5 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5602
     '*ute*' match:'12345COMPUTER' from:6 to:13 ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5603
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5604
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5605
    "Modified: / 10.11.1998 / 21:43:46 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5606
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5607
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5608
match:aString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5609
    <resource: #obsolete>
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5610
    "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
  5611
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5612
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5613
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5614
     The escape character is the backQuote.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5615
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5616
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5617
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5618
     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
  5619
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5620
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5621
    "/ 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
  5622
    ^ self match:aString from:1 to:aString size caseSensitive:ignoreCase not
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5623
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5624
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5625
     '*ute*' match:'COMPUTER' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5626
     '*uter' match:'COMPUTER' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5627
     '[abcd]*' match:'computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5628
     '[abcd]*' match:'Computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5629
     '[a-k]*' match:'komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5630
     '[a-k]*' match:'zomputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5631
     '[a-k]*' match:'Komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5632
     '[a-k]*' match:'Komputer' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5633
     '*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
  5634
     '*some*compl*ern*' match:'this is another complicated pattern match' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5635
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5636
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5637
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5638
	    '[ab]*' match:sym ignoreCase:false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5639
	]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5640
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5641
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5642
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5643
	    '*at:*' match:sym ignoreCase:false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5644
	]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5645
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5646
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5647
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5648
    "Modified: 2.4.1997 / 17:28:58 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5649
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5650
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5651
match:aString ignoreCase:ignoreCase escapeCharacter:escape
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5652
    <resource: #obsolete>
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5653
    "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
  5654
     characters $* (to match any string) or $# (to match any character)
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5655
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5656
     If ignoreCase is true, lower/uppercase are considered the same.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5657
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5658
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5659
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5660
     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
  5661
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5662
19033
64260c2d67b8 #REFACTORING
Claus Gittinger <cg@exept.de>
parents: 18974
diff changeset
  5663
    ^ 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
  5664
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5665
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5666
     '*ute*' match:'COMPUTER' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5667
     '*uter' match:'COMPUTER' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5668
     '[abcd]*' match:'computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5669
     '[abcd]*' match:'Computer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5670
     '[a-k]*' match:'komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5671
     '[a-k]*' match:'zomputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5672
     '[a-k]*' match:'Komputer' ignoreCase:false
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5673
     '[a-k]*' match:'Komputer' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5674
     '*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
  5675
     '*some*compl*ern*' match:'this is another complicated pattern match' ignoreCase:true
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5676
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5677
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5678
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5679
	    '[ab]*' match:sym ignoreCase:false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5680
	]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5681
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5682
     Time millisecondsToRun:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5683
	Symbol allInstancesDo:[:sym |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5684
	    '*at:*' match:sym ignoreCase:false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5685
	]
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5686
     ].
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5687
    "
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5688
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5689
    "Modified: 2.4.1997 / 17:28:58 / cg"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5690
!
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5691
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5692
matches:aPatternString
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5693
    "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
  5694
     characters $* (to match any string) or $# (to match any character).
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5695
     or [...] to match a set of characters.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5696
     Lower/uppercase are considered different.
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5697
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5698
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5699
	     NOT the ST-80 meaning.
12518
bfdcbf713b43 comment/format in:16 methods
Claus Gittinger <cg@exept.de>
parents: 12396
diff changeset
  5700
     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
  5701
     NOTICE: the receiver is the match pattern"
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5702
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5703
    ^ aPatternString match:self
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5704
!
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5705
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5706
matches:aPatternString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5707
    "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
  5708
     characters $* (to match any string) or $# (to match any character).
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5709
     or [...] to match a set of characters.
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5710
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5711
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5712
	     NOT the ST-80 meaning.
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5713
     NOTICE: this is GLOB, which is different from regex matching (see matchesRegex:)
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5714
     NOTICE: the receiver is the match pattern"
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5715
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5716
    ^ aPatternString match:self caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5717
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5718
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5719
matches:aPatternString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5720
    <resource: #obsolete>
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5721
    "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
  5722
     characters $* (to match any string) or $# (to match any character).
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5723
     or [...] to match a set of characters.
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5724
     Lower/uppercase are considered different.
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5725
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5726
     NOTICE: match-meta character interpretation is like in unix-matching (glob),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5727
	     NOT the ST-80 meaning.
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5728
     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
  5729
     NOTICE: the receiver is the match pattern"
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5730
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5731
    ^ aPatternString match:self caseSensitive:ignoreCase not
14054
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5732
48d3fab77bd9 added: #matches:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 14053
diff changeset
  5733
    "Created: / 08-03-2012 / 03:11:11 / cg"
12111
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5734
! !
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5735
4b1ac266f7aa category changes
Claus Gittinger <cg@exept.de>
parents: 12058
diff changeset
  5736
18722
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5737
!CharacterArray methodsFor:'matching - regex'!
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5738
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5739
matchesRegex:regexString caseSensitive:aBoolean
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5740
    "Test if the receiver matches a regex.
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5741
     May raise RxParser>>regexErrorSignal or child signals.
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5742
     This is a part of the Regular Expression Matcher package,
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5743
	(c) 1996, 1999 Vassili Bykov.
18722
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5744
     Refer to `documentation' protocol of RxParser class for details."
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5745
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5746
    aBoolean ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5747
	^ self matchesRegexIgnoringCase:regexString
18722
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5748
    ] ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5749
	^ self matchesRegex:regexString
18722
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5750
    ].
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5751
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5752
    "
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5753
     'hello world' matchesRegex:'h.*d'.
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5754
    "
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5755
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5756
    "Created: / 13-12-2010 / 11:01:49 / cg"
c5f338c2a6dc class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18721
diff changeset
  5757
! !
17625
585a7eb50e65 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17600
diff changeset
  5758
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5759
!CharacterArray methodsFor:'padded copying'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5760
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5761
centerPaddedTo:newSize
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5762
     "return a new string consisting of the receiver's characters,
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5763
      plus spaces up to length and center the receiver's characters in
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5764
      the resulting string.
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5765
      If the receiver's size is equal or greater than the length argument,
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5766
      the original receiver is returned unchanged."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5767
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5768
     ^ self centerPaddedTo:newSize with:(Character space)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5769
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5770
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5771
     'foo' centerPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5772
     123 printString centerPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5773
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5774
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5775
    "Created: 25.11.1995 / 10:53:57 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5776
!
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5777
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5778
centerPaddedTo:size with:padCharacter
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5779
    "return a new string of length size, which contains the receiver
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5780
     centered (i.e. padded on both sides).
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5781
     Characters are filled with padCharacter.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5782
     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
  5783
     the original receiver is returned unchanged."
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5784
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5785
    |len s|
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5786
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5787
    len := self size.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5788
    (len < size) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5789
	s := self species new:size withAll:padCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5790
	s replaceFrom:(size - len) // 2  + 1 with:self.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5791
	^ s
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5792
    ]
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5793
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5794
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5795
     'foo' centerPaddedTo:11 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5796
     'fooBar' centerPaddedTo:5 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5797
     123 printString centerPaddedTo:10 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5798
     (' ' , 123 printString) centerPaddedTo:10 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5799
     (Float pi printString) centerPaddedTo:15 with:(Character space)
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5800
     (Float pi printString) centerPaddedTo:15 with:$-
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5801
     (' ' , Float pi class name) centerPaddedTo:15 with:$.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5802
    "
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5803
!
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5804
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  5805
decimalPaddedTo:size and:afterPeriod at:decimalCharacter
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5806
    "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
  5807
     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
  5808
     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
  5809
     to be padded).
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5810
     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
  5811
     the original receiver is returned unchanged.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5812
     (sounds complicated ? -> see examples below)."
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5813
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5814
    ^ self
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5815
	decimalPaddedTo:size
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5816
	and:afterPeriod
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5817
	at:decimalCharacter
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5818
	withLeft:(Character space)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5819
	right:$0
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5820
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5821
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5822
     '123' decimalPaddedTo:10 and:3 at:$.      -> '   123    '
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5823
     '123' decimalPaddedTo:10 and:3 at:$.      -> '   123.000'
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5824
     '123.' decimalPaddedTo:10 and:3 at:$.     -> '   123.000'
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5825
     '123.1' decimalPaddedTo:10 and:3 at:$.    -> '   123.100'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5826
     '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
  5827
     '123.123' decimalPaddedTo:10 and:3 at:$.  -> '   123.123'
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5828
    "
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5829
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5830
    "Created: 23.12.1995 / 13:11:52 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5831
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5832
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5833
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
  5834
    "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
  5835
     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
  5836
     of the period.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5837
     Characters on the left are filled with leftPadChar.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5838
     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
  5839
     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
  5840
     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
  5841
     the original receiver is returned unchanged.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5842
     (sounds complicated ? -> see examples below)."
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5843
5230
655c21ffe6cc care for negative size of rest-string when decimalPadding
Claus Gittinger <cg@exept.de>
parents: 5221
diff changeset
  5844
    |s idx n rest|
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5845
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5846
    idx := self indexOf:decimalCharacter.
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5847
    idx == 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5848
	"/
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5849
	"/ no decimal point found; adjust string to the left of the period column
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5850
	"/
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5851
	rightPadChar isNil ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5852
	    s := self , (self species new:afterPeriod + 1 withAll:leftPadChar)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5853
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5854
	    s:= self , decimalCharacter asString , (self species new:afterPeriod withAll:rightPadChar).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5855
	].
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5856
    ] ifFalse:[
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5857
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5858
	"/ the number of after-decimalPoint characters
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5859
	n := self size - idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5860
	rest := afterPeriod - n.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5861
	rest > 0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5862
	    s := (self species new:rest withAll:(rightPadChar ? leftPadChar)).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5863
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5864
	    s := ''
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5865
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5866
	s := self , s.
815
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5867
    ].
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5868
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5869
    ^ s leftPaddedTo:size with:leftPadChar
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5870
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5871
    "
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5872
     '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
  5873
     '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
  5874
     '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
  5875
     '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
  5876
     '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
  5877
     '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
  5878
    "
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5879
997a02c135e7 support for decimal padding added
Claus Gittinger <cg@exept.de>
parents: 759
diff changeset
  5880
    "Modified: 23.12.1995 / 13:08:18 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5881
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5882
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5883
leftPaddedTo:size
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5884
    "return a new string of length size, which contains the receiver
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5885
     right-adjusted (i.e. padded on the left).
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5886
     Characters on the left are filled with spaces.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5887
     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
  5888
     the original receiver is returned unchanged."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5889
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5890
    ^ self leftPaddedTo:size with:(Character space)
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5891
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5892
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5893
     'foo' leftPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5894
     'fooBar' leftPaddedTo:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5895
     123 printString leftPaddedTo:10
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5896
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5897
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5898
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5899
paddedTo:newSize
19753
cb9db99978cb #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19747
diff changeset
  5900
     "return a new string consisting of the receiver's characters,
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5901
     plus spaces up to length.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  5902
     If the receiver's size is equal or greater than the length argument,
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5903
     the original receiver is returned unchanged."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5904
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5905
     ^ self paddedTo:newSize with:(Character space)
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5906
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5907
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5908
     'foo' paddedTo:10
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5909
     123 printString paddedTo:10
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  5910
     '12345678901234' paddedTo:10
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5911
    "
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
  5912
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
  5913
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5914
!CharacterArray methodsFor:'printing & storing'!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5915
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5916
article
17137
9a31ec4d6489 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17065
diff changeset
  5917
    "return an article string for the receiver.
9a31ec4d6489 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17065
diff changeset
  5918
     The original code only looked at the first character being a vowel;
9a31ec4d6489 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17065
diff changeset
  5919
     this has been enhanced by some heuristics - not perfect, still."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5920
17241
8f12aadd28bb class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17233
diff changeset
  5921
    |firstChar secondChar thirdChar|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5922
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  5923
    firstChar := (self at:1) asLowercase.
5848
ef81d77ca1ad UTF-8 Stuff
Stefan Vogel <sv@exept.de>
parents: 5843
diff changeset
  5924
    ((firstChar isVowel and:[firstChar ~~ $u]) or:[firstChar == $x]) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5925
	^ 'an'
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5926
    ].
17043
4cd789620782 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17024
diff changeset
  5927
4cd789620782 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17024
diff changeset
  5928
    (self size >= 3) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5929
	secondChar := (self at:2) asLowercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5930
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5931
	"/ may need more here...
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5932
	( #('rb') includes:(String with:firstChar with:secondChar)) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5933
	    ^ 'an'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5934
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5935
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5936
	thirdChar := (self at:3) asLowercase.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5937
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5938
	(firstChar isVowel not
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5939
	and:[(secondChar isVowel or:[secondChar == $y]) not
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5940
	and:[thirdChar isVowel not ]]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5941
	    "/ exceptions: 3 non-vowels in a row: looks like an abbreviation
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5942
	    (self size > 4) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5943
		(firstChar == $s) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5944
		    ((secondChar == $c and:[thirdChar == $r])
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5945
		    or:[ (secondChar == $t and:[thirdChar == $r]) ]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5946
			(self at:4) isVowel ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5947
			    ^ 'a'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5948
			]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5949
		    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5950
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5951
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5952
	    "/ an abbreviation; treat x, s as vowels
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5953
	    (firstChar == $x or:[ firstChar == $s ]) ifTrue:[^ 'an'].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5954
	]
17043
4cd789620782 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17024
diff changeset
  5955
    ].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5956
    ^ 'a'
5848
ef81d77ca1ad UTF-8 Stuff
Stefan Vogel <sv@exept.de>
parents: 5843
diff changeset
  5957
ef81d77ca1ad UTF-8 Stuff
Stefan Vogel <sv@exept.de>
parents: 5843
diff changeset
  5958
    "
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5959
	'uboot' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5960
	'xmas' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5961
	'alarm' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5962
	'baby' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5963
	'sql' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5964
	'scr' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5965
	'screen' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5966
	'scrollbar' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5967
	'scrs' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5968
	'cvs' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5969
	'cvssource' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5970
	'symbol' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5971
	'string' article.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5972
	'rbparser' article.
19683
81534211fe00 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19682
diff changeset
  5973
    "
81534211fe00 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19682
diff changeset
  5974
81534211fe00 #UI_ENHANCEMENT by cg
Claus Gittinger <cg@exept.de>
parents: 19682
diff changeset
  5975
    "Modified (comment): / 01-05-2016 / 10:57:25 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5976
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  5977
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  5978
basicStoreString
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  5979
    "return a String for storing myself"
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  5980
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  5981
    |s n index|
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  5982
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  5983
    n := self occurrencesOf:$'.
11320
0cf84c372ccf Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11292
diff changeset
  5984
    n ~~ 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5985
	s := self species new:(n + 2 + self size).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5986
	s at:1 put:$'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5987
	index := 2.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5988
	self do:[:thisChar |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5989
	    (thisChar == $') ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5990
		s at:index put:thisChar.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5991
		index := index + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5992
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5993
	    s at:index put:thisChar.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5994
	    index := index + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5995
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5996
	s at:index put:$'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  5997
	^ s
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  5998
    ].
11320
0cf84c372ccf Unicode handling:
Stefan Vogel <sv@exept.de>
parents: 11292
diff changeset
  5999
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6000
    ^ '''' , self , ''''
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6001
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6002
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6003
     '''immutable'' string' asImmutableString basicStoreString
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6004
     'immutable string' asImmutableString basicStoreString
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6005
    "
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6006
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6007
    "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
  6008
!
8049
ccd0e8f26439 printing - migrating towards unicodeSupport in ST-code
Claus Gittinger <cg@exept.de>
parents: 8040
diff changeset
  6009
11774
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6010
displayOn:aGCOrStream
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6011
    "Compatibility
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6012
     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
  6013
     OR:
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6014
     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
  6015
     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
  6016
     (although the fallBack is to display its printString ...)"
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6017
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6018
    "/ what a kludge - Dolphin and Squeak mean: printOn: a stream;
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6019
    "/ ST/X (and some old ST80's) mean: draw-yourself on a GC.
16738
bd9416219f7c displayOn: cleanup
Claus Gittinger <cg@exept.de>
parents: 16733
diff changeset
  6020
    (aGCOrStream isStream) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6021
	self storeOn:aGCOrStream.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6022
	^ self
11774
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6023
    ].
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6024
    ^ super displayOn:aGCOrStream
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6025
!
6f6e2b71b607 displayOn (inspector's interface) was broken
Claus Gittinger <cg@exept.de>
parents: 11754
diff changeset
  6026
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6027
printOn:aStream
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6028
    "print the receiver on aStream"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6029
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6030
    aStream nextPutAll:self
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6031
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6032
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6033
printString
13079
111e7e456648 Implement display with #displayOn: instead of #displayString
Stefan Vogel <sv@exept.de>
parents: 13073
diff changeset
  6034
    "return a string for printing - that's myself"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6035
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6036
    ^ self
3578
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6037
!
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6038
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6039
printWithQuotesDoubledOn:aStream
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6040
    "put the raw storeString of myself on aStream"
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6041
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6042
    self do:[:thisChar |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6043
	(thisChar == $') ifTrue:[aStream nextPut:thisChar].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6044
	aStream nextPut:thisChar
3578
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6045
    ]
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6046
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6047
    "Modified: / 15.6.1998 / 17:21:17 / cg"
46dc8399fdf8 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 3537
diff changeset
  6048
    "Created: / 15.6.1998 / 17:22:13 / cg"
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6049
!
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6050
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6051
printXmlQuotedOn:aStream
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6052
    "convert aString to a valid XML string
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6053
     that can be used for attributes, text, comments an PIs
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6054
     TODO: care for 16bit UNICODE string and escape chars ..."
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6055
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6056
    self do:[:eachChar |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6057
	eachChar == $< ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6058
	    aStream nextPutAll:'&lt;'     "mapping needed for xml text"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6059
	] ifFalse:[ eachChar == $& ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6060
	    aStream nextPutAll:'&amp;'    "mapping needed for all"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6061
	] ifFalse:[ eachChar == $> ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6062
	    aStream nextPutAll:'&gt;'     "mapping needed for comments"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6063
	] ifFalse:[ eachChar == $' ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6064
	    aStream nextPutAll:'&apos;'   "mapping needed for attributes"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6065
	] ifFalse:[ eachChar == $" ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6066
	    aStream nextPutAll:'&quot;'   "mapping needed for attributes"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6067
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6068
	    |codePoint|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6069
	    codePoint := eachChar codePoint.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6070
	    (codePoint < 16r20 or:[codePoint >= 16r7F]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6071
		aStream nextPutAll:'&#'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6072
		codePoint printOn:aStream.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6073
		aStream nextPut:$;.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6074
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6075
	    aStream nextPut:eachChar
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6076
	]]]]]]
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6077
    ].
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6078
!
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6079
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6080
printXmlTextQuotedOn:aStream
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6081
    "convert aString to a valid XML string
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6082
     that can be used for XML text.
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6083
     Here line formatting characters are not escaped.
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6084
     TODO: care for 16bit UNICODE string and escape chars ..."
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6085
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6086
    self do:[:eachChar |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6087
	eachChar == $< ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6088
	    aStream nextPutAll:'&lt;'     "mapping needed for xml text"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6089
	] ifFalse:[ eachChar == $& ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6090
	    aStream nextPutAll:'&amp;'    "mapping needed for all"
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6091
"/        ] ifFalse:[ eachChar == $> ifTrue:[
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6092
"/            aStream nextPutAll:'&gt;'     "mapping needed for comments"
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6093
"/        ] ifFalse:[ eachChar == $' ifTrue:[
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6094
"/            aStream nextPutAll:'&apos;'   "mapping needed for attributes"
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6095
"/        ] ifFalse:[ eachChar == $" ifTrue:[
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6096
"/            aStream nextPutAll:'&quot;'   "mapping needed for attributes"
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6097
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6098
	    |codePoint|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6099
	    codePoint := eachChar codePoint.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6100
	    ((codePoint < 16r20 and:[codePoint ~~ 9 and:[codePoint ~~ 10 and:[codePoint ~~ 13]]])
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6101
	     or:[codePoint >= 16r7F]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6102
		aStream nextPutAll:'&#'.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6103
		codePoint printOn:aStream.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6104
		aStream nextPut:$;.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6105
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6106
	    aStream nextPut:eachChar
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6107
	]]]"/]]]
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6108
    ].
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6109
!
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6110
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6111
printfWith:arg1 with:arg2 with:arg3 with:arg4 with:arg5
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  6112
    "Format and print the receiver with <argI> formatted in C style,
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6113
     as specified in the Unix C-language manual page for printf(3).
15712
8aa66f2ff56c class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15656
diff changeset
  6114
     Return the resulting string (i.e actually, this is more like an sprintf)."
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  6115
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6116
    ^ self printf:(Array with:arg1 with:arg2 with:arg3 with:arg4 with:arg5)
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6117
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6118
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  6119
     Transcript showCR:('%d %05x %08o %b' printfWith:123 with:234 with:345 with:123)
12171
Claus Gittinger <cg@exept.de>
parents: 12170
diff changeset
  6120
    "
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6121
!
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6122
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6123
xmlQuotedPrintString
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6124
    "convert aString to a valid XML string
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6125
     that can be used for attributes, text, comments an PIs
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6126
     TODO: care for 16bit UNICODE string and escape chars ..."
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6127
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6128
    ^ String streamContents:[:s|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6129
	self printXmlQuotedOn:s
15788
ca8a67212c35 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15773
diff changeset
  6130
    ].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6131
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6132
11955
1230c6953d49 comments
Claus Gittinger <cg@exept.de>
parents: 11919
diff changeset
  6133
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6134
!CharacterArray methodsFor:'queries'!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6135
4429
564b0fd9168e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
  6136
bitsPerCharacter
18662
3ad440593060 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18657
diff changeset
  6137
    "return the underlying string's bitsPerCharacter
4429
564b0fd9168e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
  6138
     (i.e. is it a regular String or a TwoByteString)"
564b0fd9168e checkin from browser
Claus Gittinger <cg@exept.de>
parents: 4410
diff changeset
  6139
8457
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6140
    |string max|
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6141
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6142
    (string := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6143
	^ string bitsPerCharacter
8457
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6144
    ].
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6145
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6146
    max := 8.
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6147
    self do:[:eachCharacter |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6148
	max := max max:(eachCharacter bitsPerCharacter)
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6149
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6150
    ^ max
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6151
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6152
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6153
     'hello' bitsPerCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6154
     'hello' asText allBold bitsPerCharacter
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6155
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6156
!
8457
a00113e2f7bd +contains8BitCharacter
penk
parents: 8395
diff changeset
  6157
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6158
bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6159
    "return the underlying string's required
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6160
     bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6161
     (i.e. is it a regular String or a TwoByteString)"
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6162
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6163
    |string max|
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6164
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6165
    (string := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6166
	^ string bytesPerCharacter
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6167
    ].
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6168
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6169
    max := 1.
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6170
    self do:[:eachCharacter |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6171
	max := max max:(eachCharacter bytesPerCharacter)
19757
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6172
    ].
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6173
    ^ max
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6174
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6175
    "
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6176
     'hello' bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6177
     'hello' asUnicode16String bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6178
     'hello' asText allBold bytesPerCharacter
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6179
    "
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6180
!
4a401362ec92 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19753
diff changeset
  6181
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6182
containsNon8BitElements
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6183
    "return true, if the underlying string contains elements larger than a single byte"
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6184
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6185
    |sz "{ Class:SmallInteger }"|
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6186
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6187
    sz := self size.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6188
    1 to:sz do:[:idx|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6189
	(self at:idx) codePoint > 16rFF ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6190
	    ^ true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6191
	].
18967
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6192
    ].
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6193
    ^ false.
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6194
!
427d31d13e56 #REFACTORING
Stefan Vogel <sv@exept.de>
parents: 18939
diff changeset
  6195
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6196
continuesWith:aString startingAt:startIndex
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6197
    "return true, if the receiver beginning at startIndex
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6198
     contains the characters in aString."
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6199
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6200
    |sz  "{Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6201
     idx "{Class: SmallInteger }"|
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6202
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6203
    sz := aString size.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6204
    idx := startIndex.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6205
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6206
    1 to:sz do:[:i |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6207
	(self at:idx) ~~ (aString at:i) ifTrue:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6208
	idx := idx + 1
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6209
    ].
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6210
    ^ true
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6211
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6212
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6213
     'hello world' continuesWith:'world' startingAt:6
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6214
     'hello world' continuesWith:'world' startingAt:7
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6215
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6216
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6217
    "Created: 12.5.1996 / 15:46:40 / cg"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6218
    "Modified: 26.7.1996 / 19:08:36 / cg"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6219
!
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6220
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6221
countWords
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6222
    "return the number of words, which are separated by separators"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6223
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6224
    |tally "{ Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6225
     start "{ Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6226
     mySize "{ Class: SmallInteger }"
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6227
     stop ch|
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6228
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6229
    tally := 0.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6230
    start := 1.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6231
    mySize := self size.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6232
    [start <= mySize] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6233
	ch := self at:start.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6234
	ch isSeparator ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6235
	    start := start + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6236
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6237
	    stop := self indexOfSeparatorStartingAt:start.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6238
	    (stop == 0) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6239
		stop := mySize + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6240
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6241
	    tally := tally + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6242
	    start := stop
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6243
	]
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6244
    ].
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6245
    ^ tally
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6246
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6247
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6248
     'hello world isnt this nice' countWords'
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6249
    "
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6250
!
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  6251
11788
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  6252
defaultElement
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  6253
    ^ Character space
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  6254
!
eea1835a1b7b added #defaultElement
Stefan Vogel <sv@exept.de>
parents: 11774
diff changeset
  6255
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6256
encoding
1311
367f740d21e7 commentary
Claus Gittinger <cg@exept.de>
parents: 1308
diff changeset
  6257
    "return the strings encoding, as a symbol.
7982
0412a26c4621 encoding now unicode
Claus Gittinger <cg@exept.de>
parents: 7977
diff changeset
  6258
     Here, by default, we assume unicode-encoding.
20006
d02e5ecd17af #OTHER by mawalch
mawalch
parents: 19961
diff changeset
  6259
     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
  6260
     and that singleByteStrings are therefore both unicode AND
7982
0412a26c4621 encoding now unicode
Claus Gittinger <cg@exept.de>
parents: 7977
diff changeset
  6261
     8859-1 encoded."
0412a26c4621 encoding now unicode
Claus Gittinger <cg@exept.de>
parents: 7977
diff changeset
  6262
14168
fb2ae640ab02 formatting
Stefan Vogel <sv@exept.de>
parents: 14150
diff changeset
  6263
    ^ #unicode
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6264
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6265
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  6266
hasChangeOfEmphasis
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  6267
    "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
  6268
     i.e. any non-normal (=emphasized) characters"
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  6269
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  6270
    ^ false
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  6271
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  6272
    "Created: 12.5.1996 / 12:31:39 / cg"
1375
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  6273
!
f035bb7468f5 additions for new Text class
Claus Gittinger <cg@exept.de>
parents: 1333
diff changeset
  6274
7995
8ddbb403d67b +hasIcon and hasImage for LabelAndIcon compatibility
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
  6275
hasIcon
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  6276
    "for LabelAndIcon compatibility"
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  6277
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6278
    ^ false
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6279
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6280
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6281
hasImage
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6282
    "for LabelAndIcon compatibility"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6283
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6284
    ^ false
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6285
!
7995
8ddbb403d67b +hasIcon and hasImage for LabelAndIcon compatibility
Claus Gittinger <cg@exept.de>
parents: 7991
diff changeset
  6286
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6287
heightOn:aGC
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6288
    "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
  6289
20221
6e910b6733bb #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20194
diff changeset
  6290
    ^ aGC deviceFont heightOf:self      "font is already a device font"
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6291
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6292
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6293
     'hello world' heightOn:(View new)
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6294
    "
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6295
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6296
    "Created: 12.5.1996 / 20:09:29 / cg"
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6297
    "Modified: 12.5.1996 / 20:32:05 / cg"
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6298
!
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6299
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6300
isLowercaseFirst
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6301
    "return true, if the first character is a lowercase character."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6302
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6303
    ^ self size ~~ 0 and:[ self first isLowercase ]
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6304
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6305
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  6306
     'helloWorld' isLowercaseFirst
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  6307
     'HelloWorld' isLowercaseFirst
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6308
    "
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6309
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6310
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6311
isUppercaseFirst
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6312
    "return true, if the first character is an uppercase character."
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6313
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6314
    ^ self size ~~ 0 and:[ self first isUppercase ]
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6315
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6316
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  6317
     'helloWorld' isUppercaseFirst
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  6318
     'HelloWorld' isUppercaseFirst
11828
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6319
    "
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6320
!
b7fc2ba68121 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 11823
diff changeset
  6321
15773
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6322
keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6323
    "assuming the receiver is a keyword message selector,
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6324
     return the individual keywords (i.e. break it up at colons)
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6325
     and return these as a collection.
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6326
     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
  6327
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6328
    |coll s part|
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6329
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6330
    coll := OrderedCollection new.
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6331
    s := ReadStream on:self.
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6332
    [s atEnd] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6333
	part := s through:$:.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6334
	coll add:part
15773
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6335
    ].
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6336
    ^ coll asArray
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6337
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6338
    "
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6339
     #at:put: keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6340
     #at: keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6341
     #+ keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6342
     #size keywords
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6343
    "
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6344
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6345
    "Modified (Comment): / 30-06-2011 / 17:46:21 / cg"
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6346
!
af4f1efbe9f0 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15750
diff changeset
  6347
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6348
knownAsSymbol
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6349
    "for now, only single character strings are allowed as symbols.
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6350
     This method is redefined in String."
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6351
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6352
    ^ false
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6353
!
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6354
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6355
leftIndent
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6356
    "if the receiver starts with spaces, return the number of spaces
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6357
     at the left - otherwise, return 0.
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6358
     If the receiver consists of spaces only, return the receiver's size."
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6359
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6360
    |index "{Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6361
     end   "{Class: SmallInteger }"|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6362
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6363
    index := 1.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6364
    end := self size.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6365
    [index <= end] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6366
	(self at:index) isSeparator ifFalse:[^ index - 1].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6367
	index := index + 1
8350
d9aaa0c937cb +isValidSmalltalkIdentifier
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  6368
    ].
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6369
    ^ end
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6370
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6371
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6372
     '    hello' leftIndent
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6373
     'foo      ' leftIndent
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6374
     '         ' leftIndent
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6375
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6376
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6377
    "Modified: 20.4.1996 / 19:28:43 / cg"
8350
d9aaa0c937cb +isValidSmalltalkIdentifier
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  6378
!
d9aaa0c937cb +isValidSmalltalkIdentifier
Claus Gittinger <cg@exept.de>
parents: 8347
diff changeset
  6379
10437
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6380
nameSpaceSelectorParts
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6381
    "Answer the namespace and baseSelector parts of a namespace selector.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6382
     Namespace selectors are those generated by sends from a method in a different
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6383
     namespace; they are prefixed by ':'<ns>'::'.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6384
     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
  6385
     Experimental"
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6386
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6387
    |nsPart selPart idx|
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6388
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6389
    (self at:1) == $: ifFalse:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6390
    idx := self indexOf:$: startingAt:3.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6391
    idx == 0 ifTrue:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6392
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6393
    (idx+2 > self size) ifTrue:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6394
    (self at:idx+1) == $: ifFalse:[^ Array with:'' with:self].
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6395
    nsPart := self copyFrom:2 to:idx-1.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6396
    selPart := self copyFrom:idx+2.
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6397
    ^ Array with:nsPart with:selPart
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6398
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6399
    "test:
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6400
     self assert:('+' nameSpaceSelectorParts) = #('' '+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6401
     self assert:(':+' nameSpaceSelectorParts) = #('' ':+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6402
     self assert:(':Foo:+' nameSpaceSelectorParts) = #('' ':Foo:+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6403
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6404
     self assert:(':Foo::+' nameSpaceSelectorParts) = #('Foo' '+').
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6405
     self assert:(':Foo::bar:baz:' nameSpaceSelectorParts) = #('Foo' 'bar:baz:').
10437
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6406
    "
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6407
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6408
    "Created: / 05-03-2007 / 17:16:58 / cg"
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6409
    "Modified: / 06-03-2007 / 11:51:15 / cg"
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6410
!
0dfcdb4359ce +nameSpaceSelectorParts
Claus Gittinger <cg@exept.de>
parents: 10431
diff changeset
  6411
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  6412
stringSpecies
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6413
    "return the underlying strings bitsPerCharacter
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  6414
     (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
  6415
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  6416
    |string|
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  6417
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6418
    string := self string.
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  6419
    string == self ifTrue:[^ self species].
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  6420
    ^ string stringSpecies
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  6421
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  6422
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6423
     'hello' stringSpecies
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6424
     'hello' asText allBold stringSpecies
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6425
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6426
!
8037
8cce25b1059c care for wide chars in asXXXFirst
Claus Gittinger <cg@exept.de>
parents: 8032
diff changeset
  6427
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  6428
widthFrom:startIndex to:endIndex on:aGC
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6429
    "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
  6430
20221
6e910b6733bb #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20194
diff changeset
  6431
    ^ aGC deviceFont widthOf:self from:startIndex to:endIndex
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  6432
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  6433
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6434
     'hello world' widthFrom:1 to:5 on:(View new)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6435
     'hello' widthOn:(View new)
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  6436
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6437
!
6653
2e77e6bd99a1 +withoutEmphasis:
Michael Beyl <mb@exept.de>
parents: 6643
diff changeset
  6438
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6439
widthOn:aGC
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  6440
    "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
  6441
20221
6e910b6733bb #REFACTORING by stefan
Stefan Vogel <sv@exept.de>
parents: 20194
diff changeset
  6442
    ^ aGC deviceFont widthOf:self     "font is already a device font"
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6443
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6444
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6445
     'hello world' widthOn:(View new)
1388
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6446
    "
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6447
e47b4b894530 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 1381
diff changeset
  6448
    "Created: 12.5.1996 / 20:09:29 / cg"
2554
309ee6707322 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 2551
diff changeset
  6449
    "Modified: 17.4.1997 / 12:50:23 / cg"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6450
! !
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6451
20484
5bc49b246ef2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20480
diff changeset
  6452
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6453
!CharacterArray methodsFor:'special string converting'!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6454
16759
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6455
asUnixFilenameString
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6456
    "return a new string consisting of receiver's characters
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6457
     with all \-characters replaced by /-characters.
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6458
     If there are no backslashes, return the original"
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6459
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6460
    ^ self copyReplaceAll:$\ with:$/ ifNone:self
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6461
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6462
    "
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6463
     'hello\world' asUnixFilenameString
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6464
    "
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6465
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6466
    "Modified: / 18.7.1998 / 22:53:02 / cg"
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6467
!
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6468
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6469
expandPlaceholders:escapeCharacter with:argArrayOrDictionary
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6470
    "this is the generic version of the old %-escaping method, allowing for an arbitrary
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6471
     escape character to be used (typically $$ or $% are effectively used).
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6472
     Return a copy of the receiver, where all %i escapes are
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6473
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6474
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6475
     in the new string 'hello world; how is this'.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6476
     As an extension, the argument may also be a dictionary, providing
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6477
     values for symbolic keys.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6478
     In this case, %a .. %z and %(...) are also allowed.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6479
     (%1..%9 require a numeric key in the dictionary, however)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6480
     To get a '%' character, use a '%%'-escape.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6481
     To get an integer-indexed placeHolder followed by another digit,
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6482
     or an index > 9, you must use %(digit).
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6483
     See also bindWith:... for VisualAge compatibility."
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6484
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6485
    |stream|
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6486
18269
77a84c6693c8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18194
diff changeset
  6487
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6488
    self expandPlaceholders:escapeCharacter with:argArrayOrDictionary on:stream.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6489
    ^ stream contents.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6490
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6491
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6492
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6493
     'hello %1' expandPlaceholdersWith:#('world')
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6494
     'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this')
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6495
     'hello %2; how is %1' expandPlaceholdersWith:#('world' 'this')
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6496
     '%1 plus %2 gives %3 ' expandPlaceholdersWith:#(4 5 9)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6497
     '%%(1)0 gives %(1)0' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6498
     '%%10 gives %10' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6499
     '%%(10) gives %(10)' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6500
     '%test gives %1' expandPlaceholdersWith:#(123)
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6501
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' allBold }
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6502
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' }
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6503
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6504
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6505
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6506
     |dict|
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6507
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6508
     dict := Dictionary new.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6509
     dict at:1 put:'one'.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6510
     dict at:$a put:'AAAAA'.
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6511
     dict at:$b put:[ Time now ].
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6512
     dict at:'foo' put:[ Date today ].
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6513
     'hello $1 %a $b %(foo) $foo ' expandPlaceholders:$$ with:dict.
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6514
     'hello $1 %a $b %(foo) $foo ' expandPlaceholders:$% with:dict.
14768
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6515
    "
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6516
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6517
    "Modified: 1.7.1997 / 00:53:24 / cg"
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6518
!
1da413c31c24 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14765
diff changeset
  6519
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6520
expandPlaceholders:escapeCharacter with:argArrayOrDictionary on:aStream
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6521
    "this is the generic version of the old %-escaping method, allowing for an arbitrary
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6522
     escape character to be used (typically $$ or $% are effectively used).
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6523
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6524
     Write the receiver to aStream, where all %i escapes are
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6525
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6526
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6527
     in the new string 'hello world; how is this'.
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6528
17192
dc09b5644f84 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17191
diff changeset
  6529
     As an extension, the argument may also be a dictionary, providing values for symbolic keys.
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6530
     In this case, %a .. %z and %(...) are also allowed.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6531
     (%1..%9 require a numeric key in the dictionary, however)
17192
dc09b5644f84 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17191
diff changeset
  6532
     Also, the values in argArrayOrDictionary may be blocks.
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6533
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6534
     To get a '%' character, use a '%%'-escape.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6535
     To get an integer-indexed placeHolder followed by another digit,
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6536
     or an index > 9, you must use %(digit).
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6537
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6538
     See also bindWith:... for VisualAge compatibility.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6539
     Use %<cr> to insert a CR and %<tab> to insert a TAB."
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6540
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6541
    |next v key
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6542
     idx   "{ SmallInteger }"
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6543
     idx2  "{ SmallInteger }"
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6544
     start "{ SmallInteger }"
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6545
     stop  "{ SmallInteger }"|
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6546
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6547
    stop := self size.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6548
    start := 1.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6549
    [start <= stop] whileTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6550
	idx := self indexOf:escapeCharacter startingAt:start.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6551
	(idx == 0 or:[idx == stop]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6552
	    aStream nextPutAll:self startingAt:start to:stop.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6553
	    ^ self.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6554
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6555
	"found an escapeCharacter"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6556
	aStream nextPutAll:self startingAt:start to:(idx - 1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6557
	next := self at:(idx + 1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6558
	(next == escapeCharacter) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6559
	    aStream nextPut:escapeCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6560
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6561
	    next == $< ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6562
		idx2 := self indexOf:$> startingAt:idx+2.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6563
		key := self copyFrom:idx+2 to:idx2-1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6564
		idx := idx2 - 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6565
		key := key asSymbolIfInterned.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6566
		(#(cr tab nl return lf ff null) includesIdentical:key) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6567
		    aStream nextPut:(Character perform:key).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6568
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6569
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6570
		next isDigit ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6571
		    v := argArrayOrDictionary at:(next digitValue) ifAbsent:''
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6572
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6573
		    next == $( ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6574
			idx2 := self indexOf:$) startingAt:idx+2.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6575
			key := self copyFrom:idx+2 to:idx2-1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6576
			idx := idx2 - 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6577
			(argArrayOrDictionary includesKey:key) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6578
			    v := argArrayOrDictionary at:key
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6579
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6580
			    key := key asSymbolIfInterned ? key.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6581
			    (argArrayOrDictionary includesKey:key) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6582
				v := argArrayOrDictionary at:key
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6583
			    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6584
				(key size == 1 and:[ argArrayOrDictionary includesKey:(key at:1)]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6585
				    v := argArrayOrDictionary at:(key at:1)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6586
				] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6587
				    key isNumeric ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6588
					key := Integer readFrom:key onError:nil.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6589
				    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6590
				    v := argArrayOrDictionary at:key ifAbsent:''
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6591
				]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6592
			    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6593
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6594
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6595
			(next isLetter and:[argArrayOrDictionary isSequenceable not "is a Dictionary"]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6596
			    "so next is a non-numeric single character."
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6597
			    v := argArrayOrDictionary
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6598
				    at:next
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6599
				    ifAbsent:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6600
					"try symbol instead of character"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6601
					argArrayOrDictionary
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6602
					    at:next asSymbol
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6603
					    ifAbsent:[String with:escapeCharacter with:next].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6604
				 ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6605
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6606
			    v := String with:$% with:next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6607
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6608
		    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6609
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6610
		"/ v notNil ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6611
		    v isBlock ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6612
			v := v value
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6613
		    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6614
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6615
		    v printOn:aStream.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6616
		"/ ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6617
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6618
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6619
	start := idx + 2
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6620
    ].
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6621
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6622
    "
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6623
     String streamContents:[:s|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6624
	'hello %1' expandPlaceholders:$% with:#('world') on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6625
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6626
	'hello $1; how is $2' expandPlaceholders:$$ with:#('world' 'this') on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6627
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6628
	'hello %2; how is %1' expandPlaceholders:$% with:#('world' 'this') on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6629
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6630
	'%1 plus %2 gives %3 ' expandPlaceholders:$% with:#(4 5 9) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6631
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6632
	'%%(1)0 gives %(1)0' expandPlaceholders:$% with:#(123) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6633
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6634
	'%%10 gives %10' expandPlaceholders:$% with:#(123) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6635
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6636
	'%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholders:$% with:#(123) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6637
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6638
	'%%test gives %test' expandPlaceholders:$% with:#(123) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6639
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6640
	'|%%<tab>|%%1|%%<cr>| gives |%<tab>|%1|%<cr>|' expandPlaceholders:$% with:#(foo) on:s.
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6641
     ]
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6642
    "
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6643
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6644
    "
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6645
     |dict|
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6646
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6647
     dict := Dictionary new.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6648
     dict at:1 put:'one'.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6649
     dict at:$a put:'AAAAA'.
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6650
     dict at:$b put:[ Time now ].
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6651
     String streamContents:[:s|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6652
	 'hello $1 $a $b' expandPlaceholders:$$ with:dict on:s.
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6653
     ].
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6654
    "
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6655
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6656
    "using blocks:
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6657
     |dict|
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6658
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6659
     dict := Dictionary new.
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6660
     dict at:'time' put:[Time now printString].
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6661
     dict at:'date' put:[Date today printString].
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6662
     String streamContents:[:s|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6663
	 'it is $(time) $(date)' expandPlaceholders:$$ with:dict on:s.
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6664
     ].
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6665
    "
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  6666
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6667
    "Modified: / 18-11-2010 / 15:43:28 / cg"
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6668
!
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6669
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6670
expandPlaceholdersWith:argArrayOrDictionary
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6671
    "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
  6672
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6673
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6674
     in the new string 'hello world; how is this'.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  6675
4410
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6676
     As an extension, the argument may also be a dictionary, providing
7313
9be9b35f5370 comment
Claus Gittinger <cg@exept.de>
parents: 7312
diff changeset
  6677
     values for symbolic keys.
4842
0086acd80497 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 4682
diff changeset
  6678
     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
  6679
     (%1..%9 require a numeric key in the dictionary, however)
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6680
     Also, the values in argArrayOrDictionary may be blocks.
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  6681
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6682
     To get a '%' character, use a '%%'-escape.
7313
9be9b35f5370 comment
Claus Gittinger <cg@exept.de>
parents: 7312
diff changeset
  6683
     To get an integer-indexed placeHolder followed by another digit,
9be9b35f5370 comment
Claus Gittinger <cg@exept.de>
parents: 7312
diff changeset
  6684
     or an index > 9, you must use %(digit).
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6685
     See also bindWith:... for VisualAge compatibility."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6686
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6687
    |stream|
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6688
18269
77a84c6693c8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18194
diff changeset
  6689
    stream := (TextStream ? CharacterWriteStream) on:(self species uninitializedNew:self size + 20).
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6690
    self expandPlaceholdersWith:argArrayOrDictionary on:stream.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6691
    ^ stream contents.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6692
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6693
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6694
     'hello %1' expandPlaceholdersWith:#('world')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6695
     'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6696
     'hello %2; how is %1' expandPlaceholdersWith:#('world' 'this')
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6697
     '%1 plus %2 gives %3 ' expandPlaceholdersWith:#(4 5 9)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6698
     '%%(1)0 gives %(1)0' expandPlaceholdersWith:#(123)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6699
     '%%10 gives %10' expandPlaceholdersWith:#(123)
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6700
     '%%(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
  6701
     '%test gives %1' expandPlaceholdersWith:#(123)
11028
cb1ee3ddd91a expandPlaceHolders: care fr Text with emphasis
Claus Gittinger <cg@exept.de>
parents: 11018
diff changeset
  6702
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' allBold }
cb1ee3ddd91a expandPlaceHolders: care fr Text with emphasis
Claus Gittinger <cg@exept.de>
parents: 11018
diff changeset
  6703
     'bla %1 bla' expandPlaceholdersWith:{ 'hello' }
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  6704
     ('bla %1 bla' withColor:Color red)
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6705
	expandPlaceholdersWith:{ 'hello' }
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  6706
     ('bla %1 bla' withColor:Color red)
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6707
	expandPlaceholdersWith:{ 'hello' withColor:Color blue }
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  6708
    "
1026
455c9f609f4d care for 16bit strings in expandPlaceHolders
Claus Gittinger <cg@exept.de>
parents: 1025
diff changeset
  6709
4410
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6710
    "
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6711
     |dict|
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6712
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6713
     dict := Dictionary new.
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6714
     dict at:1 put:'one'.
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6715
     dict at:$a put:'AAAAA'.
8794
a5df33935142 nindWith supports blocks in the value dictionary
Claus Gittinger <cg@exept.de>
parents: 8710
diff changeset
  6716
     dict at:$b put:[ Time now ].
12316
3e78905d70a9 comment/format in: #expandPlaceholdersWith:
Claus Gittinger <cg@exept.de>
parents: 12196
diff changeset
  6717
     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
  6718
     '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
  6719
    "
2bdc0c89a42e enhanced #exapndPlaceHolders, to allow for a dictionary arg
Claus Gittinger <cg@exept.de>
parents: 4409
diff changeset
  6720
2737
9f29aecea39d care for % at end in expandPlaceHolders.
Claus Gittinger <cg@exept.de>
parents: 2736
diff changeset
  6721
    "Modified: 1.7.1997 / 00:53:24 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6722
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6723
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6724
expandPlaceholdersWith:argArrayOrDictionary on:aStream
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6725
    "write the receiver to aStream, where all %i escapes are
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6726
     replaced by corresponding arguments' printStrings from the argArrayOrDictionary.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6727
     I.e. 'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') results
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6728
     in the new string 'hello world; how is this'.
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6729
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6730
     As an extension, the argument may also be a dictionary, providing
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6731
     values for symbolic keys.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6732
     In this case, %a .. %z and %(...) are also allowed.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6733
     (%1..%9 require a numeric key in the dictionary, however)
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6734
     Also, the values in argArrayOrDictionary may be blocks.
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6735
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6736
     To get a '%' character, use a '%%'-escape.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6737
     To get an integer-indexed placeHolder followed by another digit,
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6738
     or an index > 9, you must use %(digit).
18425
db49c54b84d2 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18392
diff changeset
  6739
10935
7142eab95639 #expandPlaceHoldersWith:in:
Stefan Vogel <sv@exept.de>
parents: 10929
diff changeset
  6740
     See also bindWith:... for VisualAge compatibility.
10939
d0ca31c1d1e9 #expandPlaceHoldersWith: handle %<cr> %<tab> etc
Stefan Vogel <sv@exept.de>
parents: 10935
diff changeset
  6741
     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
  6742
14765
c1769994b460 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14681
diff changeset
  6743
    ^ self expandPlaceholders:$% with:argArrayOrDictionary on:aStream
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6744
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6745
    "
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6746
     String streamContents:[:s|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6747
	'hello %1' expandPlaceholdersWith:#('world') on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6748
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6749
	'hello %1; how is %2' expandPlaceholdersWith:#('world' 'this') on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6750
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6751
	'hello %2; how is %1' expandPlaceholdersWith:#('world' 'this') on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6752
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6753
	'%1 plus %2 gives %3 ' expandPlaceholdersWith:#(4 5 9) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6754
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6755
	'%%(1)0 gives %(1)0' expandPlaceholdersWith:#(123) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6756
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6757
	'%%10 gives %10' expandPlaceholdersWith:#(123) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6758
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6759
	'%%(10) gives %(10) %<cr>%<tab>next line' expandPlaceholdersWith:#(123) on:s.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6760
	s cr.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6761
	'%test gives %1' expandPlaceholdersWith:#(123) on:s.
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6762
     ]
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6763
    "
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6764
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6765
    "
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6766
     |dict|
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6767
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6768
     dict := Dictionary new.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6769
     dict at:1 put:'one'.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6770
     dict at:$a put:'AAAAA'.
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6771
     dict at:$b put:[ Time now ].
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6772
     String streamContents:[:s|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6773
	 'hello %1 %a %b' expandPlaceholdersWith:dict on:s.
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6774
     ].
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6775
    "
13008
a27647c36b31 changed: #expandPlaceholdersWith:on:
Claus Gittinger <cg@exept.de>
parents: 12925
diff changeset
  6776
13138
d2eb0eba5907 changed: #expandPlaceholdersWith:on:
Claus Gittinger <cg@exept.de>
parents: 13137
diff changeset
  6777
    "Modified: / 18-11-2010 / 15:43:28 / cg"
10906
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6778
!
6468fe197af0 CharacterArray>>#expandMacrosWith:on:
Stefan Vogel <sv@exept.de>
parents: 10903
diff changeset
  6779
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  6780
firstLine
14405
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  6781
    "return the first line of a multiline string"
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  6782
1d0d99a95bba comment/format in:7 methods
Claus Gittinger <cg@exept.de>
parents: 14168
diff changeset
  6783
    ^ self asCollectionOfSubCollectionsSeparatedBy:(Character cr) do:[:line | ^ line].
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  6784
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  6785
    "
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6786
     'hello' firstLine
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6787
     '1\2\3' withCRs firstLine
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  6788
     '\1\2\3' withCRs firstLine
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  6789
    "
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  6790
!
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  6791
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6792
tokensBasedOn:aCharacter
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6793
    "this is an ST-80 alias for the ST/X method
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6794
	asCollectionOfSubstringsSeparatedBy:"
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6795
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6796
    ^ self asCollectionOfSubstringsSeparatedBy:aCharacter
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6797
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6798
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6799
     'hello:world:isnt:this nice' tokensBasedOn:$:
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6800
     'foo,bar,baz' tokensBasedOn:$,
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6801
     '/etc/passwd' asFilename readStream nextLine tokensBasedOn:$:
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6802
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6803
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6804
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6805
withCEscapes
16863
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  6806
    "return a new string consisting of receiver's characters
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6807
     with all special and unprintable characters replaced by \X-character escapes.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6808
     (similar to the way C-language literal Strings are represented).
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6809
     The resulting string will contain only 7-bit ascii characters.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6810
     Emphasis is not supported.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6811
     The following escapes are generated:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6812
	\'      single quote character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6813
	\dQuote double quote character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6814
	\r      return character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6815
	\r      return character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6816
	\n      newline character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6817
	\t      tab character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6818
	\\      the \ character itself
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6819
	\xnn    two digit hex number defining the characters ascii value
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6820
	\unnnn  four digit hex number defining the characters ascii value
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6821
	\Unnnnnnnn  eight digit hex number defining the characters ascii value
16863
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  6822
     This is the opposite of withoutCEscapes.
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  6823
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  6824
     Sigh: this is named completely wrong (opposite naming of withCRs/witoutCRs),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6825
	   but it cannot be changed easily, as these methods are already used heavily
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6826
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6827
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6828
    |anyEscapeNeeded out seq|
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6829
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6830
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6831
     first, check if any escape is needed and return the receiver unchanged if not
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6832
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6833
    anyEscapeNeeded := self
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6834
			contains:[:ch |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6835
			    ((ch codePoint between:32 and:126) not
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6836
			    or:[ch == $' or:[ch == $"]])
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6837
			].
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6838
    anyEscapeNeeded ifFalse:[ ^ self ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6839
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6840
    self hasChangeOfEmphasis ifTrue:[ self error:'emphasis not supported' ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6841
18269
77a84c6693c8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18194
diff changeset
  6842
    out := WriteStream on:(String uninitializedNew:self size-1).
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6843
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6844
    self do:[:ch |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6845
	|cp|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6846
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6847
	(ch == $' or:[ch == $"]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6848
	    out nextPut:$\.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6849
	    out nextPut:ch.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6850
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6851
	    (ch codePoint between:32 and:126) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6852
		out nextPut:ch
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6853
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6854
		ch == Character return ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6855
		    seq := '\r'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6856
		] ifFalse:[ ch == Character nl ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6857
		    seq := '\n'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6858
		] ifFalse:[ ch == Character tab ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6859
		    seq := '\t'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6860
		] ifFalse:[ ch == $\ ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6861
		    seq := '\\'
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6862
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6863
		    cp := ch codePoint.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6864
		    cp <= 16rFF ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6865
			seq := '\x' , (cp printStringRadix:16 padTo:2)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6866
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6867
			cp <= 16rFFFF ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6868
			    seq := '\u' , (cp printStringRadix:16 padTo:4)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6869
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6870
			    seq := '\U',(cp printStringRadix:16 padTo:8)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6871
			]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6872
		    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6873
		]]]].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6874
		out nextPutAll:seq
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6875
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6876
	].
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6877
    ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6878
    ^ out contents
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6879
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6880
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6881
     'hello\n\tworld' withoutCEscapes.
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  6882
     '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
  6883
     ('hello ',(Character value:16r1234),' world') withCEscapes
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6884
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6885
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6886
    "Created: / 25-01-2012 / 11:08:16 / cg"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6887
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6888
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6889
withCRs
17205
b266cb703584 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17192
diff changeset
  6890
    "return a new string consisting of the receiver's characters
16757
da377b8c79f5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16738
diff changeset
  6891
     with all \-characters replaced by cr-characters.
da377b8c79f5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16738
diff changeset
  6892
     If there are no backslashes, return the original"
da377b8c79f5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16738
diff changeset
  6893
16759
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  6894
    ^ self copyReplaceAll:$\ with:(Character cr) ifNone:self
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6895
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6896
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6897
     'hello\world' withCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6898
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6899
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6900
    "Modified: / 18.7.1998 / 22:53:02 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6901
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6902
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6903
withEscapes
15405
ef2e23943761 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15400
diff changeset
  6904
    <resource: #obsolete>
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6905
    "has been renamed; the name withEscapes is misleading"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6906
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6907
    self obsoleteMethodWarning:'use withoutCEscapes'.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6908
    ^ self withoutCEscapes.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6909
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  6910
    "Modified: / 25-01-2012 / 10:42:30 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6911
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6912
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6913
withMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6914
    "return a copy of the receiver with all match characters escaped
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6915
     by $\ characters (to be usable as a match string).
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6916
     Return the receiver, if there are none."
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6917
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  6918
    |in out c escape|
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  6919
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  6920
    escape := self class matchEscapeCharacter.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6921
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6922
    in := self readStream.
7986
715c72e62d58 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 7982
diff changeset
  6923
    out := WriteStream on:(self species new:self size).
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6924
    [in atEnd] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6925
	c := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6926
	(c == escape or:['*[#' includes:c]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6927
	    out nextPut:$\.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6928
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6929
	out nextPut:c.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6930
    ].
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6931
    ^ out contents.
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6932
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6933
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6934
     '*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6935
     '\*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6936
     '*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6937
     '\\*foo' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6938
     'foo*' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6939
     'foo\*' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6940
     'foo\' withMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  6941
     'f*o*o' withMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6942
    "
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6943
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  6944
    "Modified: 2.4.1997 / 18:13:04 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6945
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  6946
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6947
withSeparatorsCompacted
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6948
    "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
  6949
     Preserves a leading/trailing space."
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6950
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6951
    ^ self species streamContents:[:s |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6952
	|skipping|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6953
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6954
	skipping := false.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6955
	1 to:self size do:[:idx |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6956
	    |char|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6957
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6958
	    char := self at:idx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6959
	    char isSeparator ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6960
		s nextPut:char.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6961
		skipping := false.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6962
	    ] ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6963
		skipping ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6964
		    s nextPut:(Character space).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6965
		    skipping := true
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6966
		].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6967
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6968
	]
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6969
    ]
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6970
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6971
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6972
     'hello wwww'         withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6973
     'hello    wwww'      withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6974
     '  hello wwww'       withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6975
     '  hello wwww   '    withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6976
     '  hello    wwww   ' withSeparatorsCompacted
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  6977
     'hel   lo www   w'   withSeparatorsCompacted
14992
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6978
    "
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6979
!
ee87364e3bf5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14865
diff changeset
  6980
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6981
withSeparatorsReplacedBy:replacementCharacter
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6982
    "return a new string with each separator (whitespace) replaced by replacementCharacter.
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6983
     Typically used with space as replacementCharacter"
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6984
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6985
    ^ self species streamContents:[:s |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6986
	self do:[:ch |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6987
	    ch isSeparator ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6988
		s nextPut:replacementCharacter
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6989
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6990
		s nextPut:ch.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6991
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  6992
	]
18464
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6993
    ]
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6994
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6995
    "
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6996
     'hello wwww'         withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6997
     'hello ww ww'        withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6998
     '  hello wwww'       withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  6999
     'hel   lo www   w'   withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  7000
     'hel
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  7001
 lo www
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  7002
w'   withSeparatorsReplacedBy:$*
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  7003
    "
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  7004
!
6b4a8707ff96 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18463
diff changeset
  7005
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7006
withTabs
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  7007
    "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
  7008
     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
  7009
     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
  7010
     otherwise a new string is returned.
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7011
     Limitation: only the very first spaces are replaced
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7012
		 (i.e. if the receiver contains newLine characters,
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7013
		  no tabs are inserted after those lineBreaks)"
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7014
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7015
    |idx   "{ SmallInteger }"
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7016
     nTabs "{ SmallInteger }"
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7017
     newString|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7018
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7019
    idx := self findFirst:[:c | (c ~~ Character space)].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7020
    nTabs := (idx-1) // 8.
5815
4acdd87a77d4 // can return negative numbers.
Stefan Vogel <sv@exept.de>
parents: 5795
diff changeset
  7021
    nTabs <= 0 ifTrue:[^ self].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7022
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7023
    "any tabs"
15523
4323024f2f04 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15433
diff changeset
  7024
    newString := self species new:(self size - (nTabs * 7)).
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7025
    newString atAll:(1 to:nTabs) put:(Character tab).
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7026
    newString replaceFrom:(nTabs + 1) with:self startingAt:(nTabs * 8 + 1).
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7027
    ^ newString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7028
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7029
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7030
     '12345678901234567890' withTabs
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7031
     '       8901234567890' withTabs
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7032
     '        901234567890' withTabs
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7033
     '               67890' withTabs
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7034
     '                7890' withTabs
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7035
     '                 890' withTabs
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7036
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7037
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7038
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7039
withTabsExpanded
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  7040
    "return a string consisting of the receiver's characters,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7041
     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
  7042
     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
  7043
     otherwise a new string is returned.
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  7044
     This does handle multiline strings."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7045
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7046
    ^ self withTabsExpanded:8
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7047
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7048
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7049
     ('1' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7050
     ('12345' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7051
     ('123456' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7052
     ('1234567' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7053
     ('12345678' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7054
     ('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
  7055
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7056
     (String with:Character tab
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7057
	     with:Character tab
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7058
	     with:$1) withTabsExpanded
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7059
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7060
     (String with:Character tab
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7061
	     with:$1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7062
	     with:Character tab
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7063
	     with:$2) withTabsExpanded
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7064
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7065
     (String with:Character tab
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7066
	     with:$1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7067
	     with:Character cr
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7068
	     with:Character tab
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7069
	     with:$2) withTabsExpanded
5741
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7070
    "
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7071
3a6086774d38 added #withTabsExpanded: (i.e. arg to specify tab-column width)
Claus Gittinger <cg@exept.de>
parents: 5739
diff changeset
  7072
    "Modified: 12.5.1996 / 13:05:10 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7073
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7074
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7075
withTabsExpanded:numSpaces
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  7076
    "return a string consisting of the receiver's characters,
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7077
     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
  7078
     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
  7079
     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
  7080
     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
  7081
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7082
    |col    "{ SmallInteger }"
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7083
     str ch
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7084
     dstIdx "{ SmallInteger }"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7085
     newSz  "{ SmallInteger }"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7086
     sz "{ SmallInteger }"
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7087
     hasEmphasis e|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7088
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7089
    (self includes:(Character tab)) ifFalse:[^ self].
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7090
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7091
    sz := self size.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7092
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7093
    "/ count the new size first, instead of
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7094
    "/ multiple resizing (better for large strings)
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7095
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7096
    col := 1. newSz := 0.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7097
    1 to:sz do:[:srcIdx |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7098
	ch := self at:srcIdx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7099
	ch == Character tab ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7100
	    col := col + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7101
	    newSz := newSz + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7102
	    ch == Character cr ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7103
		col := 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7104
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7105
	] ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7106
	    (col \\ numSpaces) to:numSpaces do:[:ii |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7107
		newSz := newSz + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7108
		col := col + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7109
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7110
	]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7111
    ].
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7112
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7113
    str := self species new:newSz.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7114
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7115
    hasEmphasis := self hasChangeOfEmphasis.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7116
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7117
    col := 1. dstIdx := 1.
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7118
    1 to:sz do:[:srcIdx |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7119
	ch := self at:srcIdx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7120
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7121
	ch == Character tab ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7122
	    col := col + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7123
	    ch == Character cr ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7124
		col := 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7125
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7126
	    hasEmphasis ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7127
		e := self emphasisAt:srcIdx.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7128
		str emphasisAt:dstIdx put:e
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7129
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7130
	    str at:dstIdx put:ch.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7131
	    dstIdx := dstIdx + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7132
	] ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7133
	    (col \\ numSpaces) to:numSpaces do:[:ii |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7134
		str at:dstIdx put:Character space.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7135
		dstIdx := dstIdx + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7136
		col := col + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7137
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7138
	]
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7139
    ].
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7140
    ^ str
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7141
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7142
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7143
     ('1' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7144
     ('1' , Character tab asString , 'x') withTabsExpanded:4
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7145
     ('12345' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7146
     ('123456' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7147
     ('1234567' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7148
     ('12345678' , Character tab asString , 'x') withTabsExpanded
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7149
     ('123456789' , Character tab asString , 'x') withTabsExpanded
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  7150
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7151
     (String with:Character tab
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7152
	     with:Character tab
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7153
	     with:$1) withTabsExpanded
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7154
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7155
     (String with:Character tab
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7156
	     with:$1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7157
	     with:Character tab
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7158
	     with:$2) withTabsExpanded
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  7159
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  7160
     (String with:Character tab
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7161
	     with:$1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7162
	     with:Character cr
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7163
	     with:Character tab
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7164
	     with:$2) withTabsExpanded
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7165
    "
735
362ce9e28d89 expandTabs now handles multiline strings
Claus Gittinger <cg@exept.de>
parents: 678
diff changeset
  7166
1381
c920ec16a98f Text fixes
Claus Gittinger <cg@exept.de>
parents: 1375
diff changeset
  7167
    "Modified: 12.5.1996 / 13:05:10 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7168
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7169
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7170
withoutAllSpaces
16855
c088880a590b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16785
diff changeset
  7171
    "return a copy of the receiver with all whitespace removed"
c088880a590b class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16785
diff changeset
  7172
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7173
    ^ self asCollectionOfWords asStringWith:''.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7174
"/    |col string|
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7175
"/
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7176
"/    col := self asCollectionOfWords.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7177
"/    string := String new.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7178
"/    col do:[:el |
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7179
"/       string := string,el
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7180
"/    ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7181
"/    ^string
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7182
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7183
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7184
     'hello wwww'  withoutAllSpaces
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7185
     'hel   lo www   w'  withoutAllSpaces
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7186
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7187
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7188
    "Modified: / 18.7.1998 / 22:53:08 / cg"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7189
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7190
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7191
withoutCEscapes
15628
4fe28df5850d class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15605
diff changeset
  7192
    "return a new string consisting of receiver's characters
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7193
     with all \X-character escapes replaced by corresponding-characters.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7194
     (similar to the way C-language Strings are converted).
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7195
     The following escapes are supported:
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7196
	\r      return character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7197
	\n      newline character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7198
	\b      backspace character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7199
	\f      formfeed character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7200
	\t      tab character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7201
	\e      escape character
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7202
	\\      the \ character itself
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7203
	\nnn    three digit octal number defining the characters ascii value
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7204
	\xnn    two digit hex number defining the characters ascii value
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7205
	\unnnn  four digit hex number defining the characters unicode value
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7206
	\Unnnnnnnn  eight digit hex number defining the characters unicode value
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7207
	\other  other
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7208
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7209
     Notice, that \' is NOT a valid escape, since the general syntax of
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7210
     string constants is not affected by this method.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7211
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7212
     Although easily implementable, this is NOT done automatically
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7213
     by the compiler (due to a lack of a language standard for this).
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7214
     However, the compiler may detect sends ot #withEscapes to string literals
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7215
     and place a modified string constant into the binary/byte-code.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7216
     Therefore, no runtime penalty will be payed for using these escapes.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7217
     (not in pre 2.11 versions)
16863
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  7218
6235ea959712 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16855
diff changeset
  7219
     This is the opposite of withCEscapes.
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7220
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7221
     Sigh: this is named completely wrong (opposite naming of withCRs/witoutCRs),
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7222
	   but it cannot be changed easily, as these methods are already used heavily
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7223
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7224
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7225
    |val     "{ SmallInteger }"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7226
     in out nextChar nDigits|
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7227
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7228
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7229
     first, see if there is any escape; if not, return the receiver unchanged
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7230
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7231
    (self includes:$\) ifFalse:[^ self ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7232
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7233
    self hasChangeOfEmphasis ifTrue:[ self error:'emphasis not supported' ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7234
    out := CharacterWriteStream on:(String new:self size - 1).
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7235
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7236
    in := ReadStream on:self.
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7237
    [in atEnd] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7238
	nextChar := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7239
	nextChar == $\ ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7240
	    in atEnd ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7241
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7242
		nextChar := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7243
		nextChar == $r ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7244
		    nextChar := Character return
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7245
		] ifFalse:[ nextChar == $n ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7246
		    nextChar := Character nl
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7247
		] ifFalse:[ nextChar == $b ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7248
		    nextChar := Character backspace
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7249
		] ifFalse:[ nextChar == $f ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7250
		    nextChar := Character newPage
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7251
		] ifFalse:[ nextChar == $t ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7252
		    nextChar := Character tab
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7253
		] ifFalse:[ nextChar == $e ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7254
		    nextChar := Character esc
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7255
		] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7256
		    nextChar == $0 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7257
			val := 0.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7258
			nextChar := in peek.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7259
			nDigits := 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7260
			[nextChar notNil and:[nextChar isDigit and:[nDigits <= 3]]] whileTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7261
			    val := (val * 8) + nextChar digitValue.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7262
			    nextChar := in nextPeek.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7263
			    nDigits := nDigits + 1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7264
			].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7265
			nextChar := Character value:val.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7266
		    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7267
			val := 0.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7268
			nextChar == $x ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7269
			    2 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7270
				nextChar := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7271
				val := (val * 16) + nextChar digitValue.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7272
			    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7273
			    nextChar := Character value:val.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7274
			] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7275
			    nextChar == $u ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7276
				4 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7277
				    nextChar := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7278
				    val := (val * 16) + nextChar digitValue.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7279
				].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7280
				nextChar := Character value:val.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7281
			    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7282
				nextChar == $U ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7283
				    8 timesRepeat:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7284
					nextChar := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7285
					val := (val * 16) + nextChar digitValue.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7286
				    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7287
				    nextChar := Character value:val.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7288
				]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7289
			    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7290
			]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7291
		    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7292
		]]]]]].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7293
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7294
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7295
	out nextPut:nextChar.
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7296
    ].
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7297
    ^ out contents
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7298
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7299
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7300
     'hello world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7301
     'hello\world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7302
     'hello\world\' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7303
     'hello world\' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7304
     'hello\tworld' withoutCEscapes
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7305
     '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
  7306
     'hello\tworld\n' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7307
     'hello\010world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7308
     'hello\r\nworld' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7309
     'hello\r\n\x08world' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7310
     '0\x080' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7311
     '0\u12340' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7312
     '0\U123456780' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7313
     '0\0a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7314
     '0\00a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7315
     '0\000a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7316
     '0\0000a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7317
     '0\00000a' withoutCEscapes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7318
     '0\03770' withoutCEscapes
13987
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7319
    "
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7320
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7321
    "Created: / 25-01-2012 / 10:41:44 / cg"
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7322
!
Claus Gittinger <cg@exept.de>
parents: 13882
diff changeset
  7323
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7324
withoutCRs
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  7325
    "return a new collection consisting of receiver's elements
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7326
     with all cr-characters replaced by \-characters.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7327
     This is the reverse operation of withCRs."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7328
16759
347181805b43 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16757
diff changeset
  7329
    ^ self copyReplaceAll:(Character cr) with:$\ ifNone:self
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  7330
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7331
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7332
     'hello
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7333
world' withoutCRs
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7334
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7335
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7336
    "Modified: / 18.7.1998 / 22:53:08 / cg"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7337
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7338
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7339
withoutLeadingSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7340
    "return a copy of myself without leading separators.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7341
     Notice: this does remove tabs, newline or any other whitespace.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7342
     Returns an empty string, if the receiver consist only of whitespace."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7343
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7344
    |index|
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7345
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7346
    index := self indexOfNonSeparatorStartingAt:1.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7347
    index ~~ 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7348
	index == 1 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7349
	    ^ self
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7350
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7351
	^ self copyFrom:index
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7352
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7353
    ^ ''
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7354
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7355
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7356
     '    foo    ' withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7357
     'foo    '     withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7358
     '    foo'     withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7359
     '       '     withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7360
     'foo'         withoutLeadingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7361
     ('  ' , Character tab asString , ' foo   ') withoutLeadingSeparators inspect
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7362
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7363
!
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
withoutMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7366
    "return a copy of the receiver with all $\ removed or
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7367
     the receiver, if there are none."
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7368
5342
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  7369
    |in out c escape|
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  7370
5010cea0ffd4 match-escape character definition in one place
Claus Gittinger <cg@exept.de>
parents: 5316
diff changeset
  7371
    escape := self class matchEscapeCharacter.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7372
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7373
    in := self readStream.
8222
f2c454a9a038 replaced '' writeStream by String writeStream
Claus Gittinger <cg@exept.de>
parents: 8124
diff changeset
  7374
    out := self species writeStream.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7375
    [in atEnd] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7376
	c := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7377
	c == escape ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7378
	    in atEnd ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7379
		c := in next.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7380
	    ]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7381
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7382
	out nextPut:c.
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7383
    ].
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7384
    ^ out contents.
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7385
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7386
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7387
     '*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7388
     '\*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7389
     '*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7390
     '\\*foo' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7391
     'foo*' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7392
     'foo\*' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7393
     'foo\' withoutMatchEscapes
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7394
     'f\*o\*o' withoutMatchEscapes
4117
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7395
    "
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7396
1b98af571a04 comments;
Claus Gittinger <cg@exept.de>
parents: 3987
diff changeset
  7397
    "Modified: 30.6.1997 / 13:40:23 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7398
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7399
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7400
withoutPrefix:aString
19677
4abe8b6cab72 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19580
diff changeset
  7401
    "if the receiver startsWith aString, return a copy without it.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7402
     Otherwise return the receiver"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7403
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7404
    (self startsWith:aString) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7405
	^ self copyFrom:aString size+1
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7406
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7407
    ^ self
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7408
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7409
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7410
     'helloworld' withoutPrefix:'hello'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7411
     'helloworld' withoutPrefix:'foo'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7412
    "
19677
4abe8b6cab72 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19580
diff changeset
  7413
4abe8b6cab72 #FEATURE by cg
Claus Gittinger <cg@exept.de>
parents: 19580
diff changeset
  7414
    "Modified: / 30-04-2016 / 10:01:00 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7415
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7416
10671
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  7417
withoutQuotes
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7418
    "/ remove quotes ($" and $') from the front and end of myself (if matching)"
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7419
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7420
    |firstChar|
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7421
17024
f0ef2620b98b class: CharacterArray
ca
parents: 17021
diff changeset
  7422
    self isEmpty ifTrue:[^ self].
f0ef2620b98b class: CharacterArray
ca
parents: 17021
diff changeset
  7423
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7424
    firstChar := self first.
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7425
    ((firstChar == $") or:[firstChar == $']) ifFalse:[^ self].
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7426
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7427
    self last == firstChar ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7428
	^ self copyFrom:2 to:(self size-1)
10671
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  7429
    ].
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7430
    ^ self
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7431
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7432
    "/
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7433
    "/ '"hello"' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7434
    "/ '''hello''' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7435
    "/ 'hello' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7436
    "/ '"hello' withoutQuotes
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  7437
    "/ 'hello"' withoutQuotes
17000
28e08401d7ae class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 16899
diff changeset
  7438
    "/
10671
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  7439
!
90b197d23f1b new: #withoutQuotes
Stefan Vogel <sv@exept.de>
parents: 10569
diff changeset
  7440
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7441
withoutSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7442
    "return a copy of myself without leading and trailing whitespace.
4156
3079a5a94617 comments
Claus Gittinger <cg@exept.de>
parents: 4117
diff changeset
  7443
     (but whiteSpace in-between is preserved)
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7444
     Whitespace is space, tab, newline, formfeed.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7445
     Use withoutSpaces, if you want to remove spaces only."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7446
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  7447
    ^ self trimForWhich:[:ch | ch isSeparator]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7448
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7449
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7450
     '    foo    ' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7451
     '    foo' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7452
     'foo    ' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7453
     '       ' withoutSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7454
     ('  foo' , Character tab asString , '    ') withoutSeparators inspect
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  7455
     '    foo    ' asUnicode16String withoutSeparators
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7456
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7457
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7458
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7459
withoutSpaces
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7460
    "return a copy of myself without leading and trailing spaces.
4156
3079a5a94617 comments
Claus Gittinger <cg@exept.de>
parents: 4117
diff changeset
  7461
     (but spaces in-between are preserved)
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7462
     Notice: this does NOT remove tabs, newline or any other whitespace.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7463
     Use withoutSeparators for this."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7464
12319
18b80c2ce1e3 oops #withoutSeparators #withoutSpaces were noops
Claus Gittinger <cg@exept.de>
parents: 12317
diff changeset
  7465
    ^ self trimForWhich:[:ch | ch == Character space]
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7466
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7467
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7468
     '    foo    ' withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7469
     'foo    '     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7470
     '    foo'     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7471
     '       '     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7472
     'a     b'     withoutSpaces
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7473
     ('  foo' , Character tab asString , '    ') withoutSpaces inspect
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7474
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7475
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7476
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7477
withoutTrailingSeparators
915
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  7478
    "return a copy of myself without trailing separators.
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  7479
     Notice: this does remove tabs, newline or any other whitespace.
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  7480
     Returns an empty string, if the receiver consist only of whitespace."
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  7481
12188
0e8bdcb8ab41 added: #withoutLeading:
fm
parents: 12177
diff changeset
  7482
    ^ self withoutTrailingForWhich:[:ch | ch isSeparator]
915
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  7483
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  7484
    "
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7485
     '    foo    ' withoutTrailingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7486
     'foo    '     withoutTrailingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7487
     '    foo'     withoutTrailingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7488
     '       '     withoutTrailingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7489
     'foo'         withoutTrailingSeparators
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7490
     ('  ' , Character tab asString , ' foo   ') withoutTrailingSeparators inspect
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7491
     ('   foo' , Character tab asString) withoutTrailingSeparators inspect
915
1ac1c7e942f4 added withoutTrailingSeparators
Claus Gittinger <cg@exept.de>
parents: 828
diff changeset
  7492
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7493
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7494
20484
5bc49b246ef2 #OTHER by stefan
Stefan Vogel <sv@exept.de>
parents: 20480
diff changeset
  7495
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7496
!CharacterArray methodsFor:'substring searching'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7497
15055
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7498
findRangeOfString:subString
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7499
    "find a substring. if found, return the start- and endIndex;
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7500
     if not found, return an empty interval."
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7501
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7502
    ^ self rangeOfSubCollection:subString startingAt:1 ifAbsent:[0 to:-1] caseSensitive:true
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7503
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7504
    "
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7505
     'hello world' findRangeOfString:'llo'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7506
     'hello world' findRangeOfString:'ole'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7507
    "
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7508
!
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7509
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7510
findString:subString
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7511
    "find a substring. if found, return the index;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7512
     if not found, return 0."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7513
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7514
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:0 caseSensitive:true
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7515
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7516
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7517
     'hello world' findString:'llo'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7518
     'hello world' findString:'ole'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7519
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7520
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7521
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7522
findString:subString caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7523
    "find a substring. if found, return the index;
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7524
     if not found, return 0."
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7525
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7526
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:0 caseSensitive:caseSensitive
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7527
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7528
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7529
     'hello world' findString:'LLo' caseSensitive:true
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7530
     'hello world' findString:'LLo' caseSensitive:false
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7531
    "
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7532
!
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7533
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7534
findString:subString ifAbsent:exceptionBlock
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7535
    "find a substring. If found, return the index;
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7536
     if not found, return the result of evaluating exceptionBlock."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7537
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7538
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:exceptionBlock caseSensitive:true
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7539
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7540
11018
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7541
findString:subString ignoreCase:ignoreCase
15734
d89a293a56e7 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15712
diff changeset
  7542
    <resource: #obsolete>
11018
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7543
    "find a substring. if found, return the index;
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7544
     if not found, return 0."
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7545
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7546
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:0 caseSensitive:ignoreCase not
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7547
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7548
    "
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7549
     'hello world' findString:'LLo' ignoreCase:false
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7550
     'hello world' findString:'LLo' ignoreCase:true
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7551
    "
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7552
!
01c9038023b3 +findString:ignoreCase:
Claus Gittinger <cg@exept.de>
parents: 10940
diff changeset
  7553
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7554
findString:subString startingAt:index
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7555
    "find a substring, starting at index. if found, return the index;
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7556
     if not found, return 0."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7557
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7558
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:0 caseSensitive:true
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7559
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7560
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7561
     'hello yello' findString:'llo' startingAt:1
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7562
     'hello yello' findString:'llo' startingAt:5
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7563
     'hello yello' findString:'llo' startingAt:15
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7564
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7565
!
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7566
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7567
findString:subString startingAt:index ifAbsent:exceptionBlock
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7568
    "find a substring, starting at index. if found, return the index;
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7569
     if not found, return the result of evaluating exceptionBlock."
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7570
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7571
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:true
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7572
!
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7573
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7574
findString:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive
10929
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  7575
    "find a substring, starting at index. if found, return the index;
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  7576
     if not found, return the result of evaluating exceptionBlock."
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  7577
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  7578
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  7579
!
7f025abfa145 *** empty log message ***
fm
parents: 10906
diff changeset
  7580
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7581
includesString:aString
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7582
    "return true, if a substring is contained in the receiver"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7583
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7584
    ^ (self indexOfSubCollection:aString startingAt:1 ifAbsent:0 caseSensitive:true) ~~ 0
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7585
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7586
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7587
     'hello world' includesString:'hel'
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  7588
     'hello world' includesString:'rld'
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7589
     'hello world' includesString:'llo'
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7590
     'hello world' includesString:'LLO'
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7591
     'hello world' includesString:''
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7592
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7593
!
9191
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  7594
7f1797f8d0a3 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9190
diff changeset
  7595
includesString:aString caseSensitive:caseSensitive
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7596
    "return true, if a substring is contained in the receiver"
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7597
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7598
    ^ (self indexOfSubCollection:aString startingAt:1 ifAbsent:0 caseSensitive:caseSensitive) ~~ 0
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7599
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7600
    "
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7601
     'hello world' includesString:'hel' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7602
     'hello world' includesString:'HEL' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7603
     'hello world' includesString:'HEL' caseSensitive:false
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7604
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7605
     'hello world' includesString:'wor' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7606
     'hello world' includesString:'WOR' caseSensitive:true
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7607
     'hello world' includesString:'WOR' caseSensitive:false
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7608
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7609
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7610
17486
695203c93b71 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17485
diff changeset
  7611
indexOfString: aString
695203c93b71 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17485
diff changeset
  7612
    "VSE and V'age compatibility"
695203c93b71 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17485
diff changeset
  7613
    "find a substring. If found, return the index; if not found, return 0."
695203c93b71 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17485
diff changeset
  7614
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7615
    ^ self indexOfSubCollection: aString startingAt:1 ifAbsent:[0]
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7616
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7617
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7618
indexOfString:aString ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7619
    "VSE and V'age compatibility"
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7620
    "find a substring. If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7621
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7622
    ^ self indexOfSubCollection: aString startingAt:1 ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7623
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7624
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7625
     'abcdefabcdef' indexOfString:'fab' ifAbsent:[999]
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7626
     'abcdefabcdef' indexOfString:'xxx' ifAbsent:[999]
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7627
    "
17486
695203c93b71 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17485
diff changeset
  7628
!
695203c93b71 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17485
diff changeset
  7629
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7630
indexOfString:aString startingAt:startIndex
18721
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7631
    "VSE and V'age compatibility"
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7632
    "find a substring. If found, return the index; if not found, return 0."
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7633
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7634
    ^ self indexOfSubCollection:aString startingAt:startIndex ifAbsent:[0]
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7635
!
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7636
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7637
indexOfString:aString startingAt:startIndex ifAbsent:exceptionalValue
18721
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7638
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7639
    "find a substring.
18721
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7640
     If found, return the index; if not found, the value from exceptionalValue."
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7641
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7642
    ^ self indexOfSubCollection:aString startingAt:startIndex ifAbsent:exceptionalValue
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7643
!
0cbaff816be6 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18671
diff changeset
  7644
18671
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7645
indexOfSubCollection:subString caseSensitive:caseSensitive
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7646
    "find a substring, starting at index. if found, return the index;
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7647
     if not found, return the result of evaluating exceptionBlock.
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7648
     This is a q&d hack - not very efficient"
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7649
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7650
    ^ self indexOfSubCollection:subString startingAt:1 ifAbsent:[0] caseSensitive:caseSensitive.
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7651
!
1140587b5757 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 18662
diff changeset
  7652
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7653
indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7654
    "find a substring, starting at index. if found, return the index;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7655
     if not found, return the result of evaluating exceptionBlock.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7656
     This is a q&d hack - not very efficient"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7657
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7658
    ^ self indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:true.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7659
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7660
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7661
indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7662
    "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
  7663
     if not found, return the result of evaluating exceptionBlock.
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7664
     This is a q&d hack - not very efficient"
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7665
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7666
    |firstChar found
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7667
     startIndex "{ Class: SmallInteger }"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7668
     subSize    "{ Class: SmallInteger }"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7669
     mySize     "{ Class: SmallInteger }"
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7670
     runIdx     "{ Class: SmallInteger }"
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7671
     tester|
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7672
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7673
    subSize := subString size.
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  7674
    subSize == 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7675
	subString isString ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7676
	   self error:'non string argument' mayProceed:true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7677
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7678
	"empty string does not match"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7679
	^ 0.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7680
	"empty string matches"
15433
426f079817b4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15431
diff changeset
  7681
"/        ^ index
6122
a98958f1c85f handle non-string arg to indexOfSubString:
Claus Gittinger <cg@exept.de>
parents: 6119
diff changeset
  7682
    ].
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7683
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7684
    mySize := self size.
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7685
    firstChar := subString at:1.
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7686
    caseSensitive ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7687
	tester := [:c1 :c2 | c1 = c2 ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7688
	startIndex := self indexOf:firstChar startingAt:index.
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7689
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7690
	tester := [:c1 :c2 | c1 sameAs: c2 ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7691
	startIndex := self findFirst:[:c | c sameAs:firstChar] startingAt:index.
9087
9e28a6168468 case-insensitive search cleanup
Claus Gittinger <cg@exept.de>
parents: 9058
diff changeset
  7692
    ].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7693
    [startIndex == 0] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7694
	runIdx := startIndex.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7695
	found := true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7696
	1 to:subSize do:[:i |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7697
	    runIdx > mySize ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7698
		found := false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7699
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7700
		(tester value:(subString at:i) value:(self at:runIdx)) ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7701
		    found := false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7702
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7703
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7704
	    runIdx := runIdx + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7705
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7706
	found ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7707
	    ^ startIndex
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7708
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7709
	caseSensitive ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7710
	    startIndex := self indexOf:firstChar startingAt:(startIndex + 1)
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7711
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7712
	    startIndex := self findFirst:[:c | c sameAs:firstChar] startingAt:(startIndex + 1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7713
	].
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7714
    ].
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  7715
    ^ exceptionBlock value
1005
4507487e0be6 more on encoding/decoding (still unfinished)
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  7716
4507487e0be6 more on encoding/decoding (still unfinished)
Claus Gittinger <cg@exept.de>
parents: 997
diff changeset
  7717
    "Modified: 23.2.1996 / 15:35:15 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7718
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7719
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7720
indexOfSubCollection:subString startingAt:index ifAbsent:exceptionBlock caseSensitive:caseSensitive ignoreDiacritics:ignoreDiacritics
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7721
    "find a substring, starting at index. if found, return the index;
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7722
     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
  7723
     This is a q&d hack - not very efficient
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7724
     (see implementation in string, for a much faster algorithm)"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7725
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7726
    |firstChar found
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7727
     startIndex "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7728
     subSize    "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7729
     mySize     "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7730
     runIdx     "{ Class: SmallInteger }"
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7731
     tester charMap firstCharMapped findNextIndex|
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7732
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7733
    subSize := subString size.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7734
    subSize == 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7735
	subString isString ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7736
	   self error:'non string argument' mayProceed:true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7737
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7738
	"empty string does not match"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7739
	^ 0.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7740
	"empty string matches"
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7741
"/        ^ index
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7742
    ].
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7743
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7744
    mySize := self size.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7745
    firstChar := subString at:1.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7746
    ignoreDiacritics ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7747
	caseSensitive ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7748
	    charMap := [:ch | ch asLowercase withoutDiacritics].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7749
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7750
	    charMap := [:ch | ch withoutDiacritics].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7751
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7752
	tester := [:c1 :c2 | (charMap value:c1) = (charMap value:c2) ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7753
	firstCharMapped := (charMap value:firstChar).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7754
	findNextIndex := [:index | self findFirst:[:ch | (charMap value:ch) = firstCharMapped] startingAt:index].
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7755
    ] ifFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7756
	caseSensitive ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7757
	    tester := [:c1 :c2 | c1 = c2 ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7758
	    findNextIndex := [:index | self indexOf:firstChar startingAt:index].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7759
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7760
	    tester := [:c1 :c2 | c1 sameAs: c2 ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7761
	    findNextIndex := [:index | self findFirst:[:c | c sameAs:firstChar] startingAt:index].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7762
	].
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7763
    ].
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7764
    startIndex := findNextIndex value:index.
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7765
    [startIndex == 0] whileFalse:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7766
	runIdx := startIndex.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7767
	found := true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7768
	1 to:subSize do:[:i |
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7769
	    runIdx > mySize ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7770
		found := false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7771
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7772
		(tester value:(subString at:i) value:(self at:runIdx)) ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7773
		    found := false
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7774
		]
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7775
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7776
	    runIdx := runIdx + 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7777
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7778
	found ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7779
	    ^ startIndex
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7780
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7781
	startIndex := findNextIndex value:(startIndex + 1)
17191
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7782
    ].
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7783
    ^ exceptionBlock value
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7784
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7785
    "
17600
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  7786
     '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
  7787
     '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
  7788
0a26280816a3 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 17543
diff changeset
  7789
     '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
  7790
     '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
  7791
    "
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7792
!
4af58fcf0955 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17183
diff changeset
  7793
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7794
lastIndexOfString:aString
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7795
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7796
    "find the last occurrence of substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7797
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7798
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7799
    ^ self lastIndexOfSubCollection:aString startingAt:(self size-aString size+1) ifAbsent:[0]
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7800
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7801
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7802
     'abcdefabcdef' lastIndexOfString:'abc'
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7803
     'abcdefabcdef' lastIndexOfString:'abc' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7804
     'abcdefabcdef' lastIndexOfString:'xxx' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7805
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7806
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7807
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7808
lastIndexOfString:aString ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7809
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7810
    "find the last occurrence of substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7811
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7812
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7813
    ^ self lastIndexOfSubCollection:aString startingAt:(self size-aString size+1) ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7814
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7815
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7816
     'abcdefabcdef' lastIndexOfString:'abc' ifAbsent:[999]
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7817
     'abcdefabcdef' lastIndexOfString:'xxx' ifAbsent:[999]
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7818
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7819
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7820
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7821
lastIndexOfString:aString startingAt:startIndex
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7822
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7823
    "find the last occurrence of a substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7824
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7825
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7826
    ^ self lastIndexOfSubCollection:aString startingAt:startIndex ifAbsent:[0]
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7827
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7828
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7829
     'abcdefabcdef' lastIndexOfString:'abc'
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7830
     'abcdefabcdef' lastIndexOfString:'abc' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7831
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7832
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7833
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7834
lastIndexOfString:aString startingAt:startIndex ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7835
    "VSE and V'age compatibility"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7836
    "find the last occurrence of a substring.
18939
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7837
     If found, return the index; if not found, return 0."
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7838
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7839
    ^ self lastIndexOfSubCollection:aString startingAt:startIndex ifAbsent:exceptionValue
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7840
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7841
    " 123456789012
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7842
     'abcdefabcdef' lastIndexOfString:'abc'
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7843
     'abcdefabcdef' lastIndexOfString:'abc' startingAt:6
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7844
     'abcdefabcdef' lastIndexOfString:'xxx' startingAt:6 ifAbsent:999
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7845
    "
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7846
!
de93efbe8873 #FEATURE
Claus Gittinger <cg@exept.de>
parents: 18933
diff changeset
  7847
15055
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7848
rangeOfSubCollection:subString startingAt:start ifAbsent:exceptionValue caseSensitive:caseSensitive
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7849
    "find a substring. if found, return the start- and endIndex;
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7850
     if not found, return the value of exceptionValue."
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7851
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7852
    |i|
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7853
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7854
    i := self indexOfSubCollection:subString startingAt:start ifAbsent:0 caseSensitive:caseSensitive.
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7855
    i == 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7856
	^ exceptionValue value
15055
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7857
    ].
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7858
    ^ i to:(i + subString size - 1)
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7859
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7860
    "
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7861
     'hello world' findRangeOfString:'llo'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7862
     'hello world' findRangeOfString:'ole'
99961534feb1 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 15035
diff changeset
  7863
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7864
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7865
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7866
!CharacterArray methodsFor:'testing'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7867
18463
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7868
argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7869
    "treating the receiver as a message selector, return how many arguments would it take (ANSI)"
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7870
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7871
    |binopChars|
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7872
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7873
    (self size <= Method maxBinarySelectorSize) ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7874
	binopChars := Method binarySelectorCharacters.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7875
	(self conform:[:eachChar | (binopChars includes:eachChar)]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7876
	    ^ 1
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7877
	].
18463
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7878
    ].
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7879
    ^ self occurrencesOf:$:
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7880
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7881
    "
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7882
     'foo:bar:' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7883
     #foo:bar: argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7884
     'hello' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7885
     '+' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7886
     '++' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7887
     '+++' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7888
     '|' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7889
     '?' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7890
     '_' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7891
     '_:' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7892
     '_:_:' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7893
     '<->' argumentCount
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7894
    "
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7895
!
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7896
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7897
characterSize
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7898
    "answer the size in bits of my largest character (actually only 7, 8, 16 or 32)"
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7899
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  7900
    |string max
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7901
     sz "{ Class:SmallInteger}" |
15829
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  7902
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  7903
    (string := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7904
	^ string characterSize.
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7905
    ].
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7906
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7907
    sz := self size.
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7908
    max := 7.
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7909
    1 to:sz do:[:idx |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7910
	|thisSize|
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7911
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7912
	thisSize := (self at:idx) characterSize.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7913
	thisSize > max ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7914
	    max := thisSize.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7915
	    max == 32 ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7916
		"shortcut: we know, that max size is 32"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7917
		^ 32.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7918
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7919
	].
15829
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  7920
    ].
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7921
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7922
    ^ max.
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7923
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7924
    "
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7925
     'hello' characterSize
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7926
     'hello' asUnicode32String characterSize
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7927
     'helloü' asUnicode32String characterSize
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7928
     'hello' asText allBold characterSize
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7929
    "
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7930
!
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7931
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7932
contains8BitCharacters
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7933
    <resource: #obsolete>
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7934
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7935
    ^ self containsNon7BitAscii
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7936
!
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7937
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7938
containsNon7BitAscii
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7939
    "return true, if the underlying string contains 8BitCharacters (or widers)
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7940
     (i.e. if it is non-ascii)"
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7941
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7942
    |string
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7943
     sz "{ Class:SmallInteger }"|
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7944
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7945
    (string := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7946
	^ string containsNon7BitAscii
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7947
    ].
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7948
    sz := self size.
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7949
    1 to:sz do:[:idx|
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7950
	(self at:idx) codePoint > 16r7F ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7951
	    ^ true.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7952
	].
18597
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7953
    ].
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7954
    ^ false.
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7955
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7956
    "
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7957
     'hello' asUnicode32String containsNon7BitAscii
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7958
     'hello üöä' asUnicode32String containsNon7BitAscii
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7959
     'hello' asUnicode32String asText allBold containsNon7BitAscii
5349c840a5a4 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18589
diff changeset
  7960
     'hello üö' asUnicode32String asText allBold containsNon7BitAscii
15829
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  7961
    "
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  7962
!
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  7963
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7964
isAlphaNumeric
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7965
    "return true, if the receiver is some alphanumeric word;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7966
     i.e. consists of a letter followed by letters or digits."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7967
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7968
    self size == 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7969
	"mhmh what is this ?"
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  7970
	^ false
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7971
    ].
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7972
    (self at:1) isLetter ifFalse:[^ false].
10093
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  7973
    ^ self conform:[:char | char isLetterOrDigit].
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  7974
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  7975
    "
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7976
     'helloWorld' isAlphaNumeric
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7977
     'foo1234' isAlphaNumeric
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7978
     'f1234' isAlphaNumeric
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7979
     '1234' isAlphaNumeric
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  7980
     '+' isAlphaNumeric
10093
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  7981
    "
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  7982
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  7983
    "Modified: / 13-10-2006 / 12:53:49 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  7984
!
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7985
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7986
isBinarySelector
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7987
    "treating the receiver as a message selector, return true if its a binary selector.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  7988
     Notice, that st/x does not have a size <= 2 limit for unaries"
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7989
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7990
    |binopChars|
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7991
18463
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7992
    (self size > Method maxBinarySelectorSize) ifTrue:[^ false].
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7993
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  7994
    binopChars := Method binarySelectorCharacters.
9190
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7995
    ^ (self conform:[:char | (binopChars includes:char)])
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7996
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7997
    "
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7998
     'foo:bar:' isBinarySelector
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  7999
     #foo:bar: isBinarySelector
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  8000
     'hello' isBinarySelector
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  8001
     '+' isBinarySelector
87dd824f1ebb comments in #asInteger
Claus Gittinger <cg@exept.de>
parents: 9151
diff changeset
  8002
     '|' isBinarySelector
8874
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8003
     '?' isBinarySelector
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8004
     ':' isBinarySelector
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8005
     'a:' isBinarySelector
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8006
     '->' isBinarySelector
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8007
     '<->' isBinarySelector
f1fdda306d51 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 8862
diff changeset
  8008
     '::' isBinarySelector
7482
e73c296fa7dc + isBinarySelector
Claus Gittinger <cg@exept.de>
parents: 7423
diff changeset
  8009
    "
e73c296fa7dc + isBinarySelector
Claus Gittinger <cg@exept.de>
parents: 7423
diff changeset
  8010
e73c296fa7dc + isBinarySelector
Claus Gittinger <cg@exept.de>
parents: 7423
diff changeset
  8011
    "Modified: 4.1.1997 / 14:16:14 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8012
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8013
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8014
isBlank
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8015
    "return true, if the receiver contains spaces only"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8016
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8017
    ^ (self contains:[:char | char ~~ Character space]) not
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8018
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8019
    "
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8020
     '' isBlank
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8021
     '   a    ' isBlank
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8022
     '        ' isBlank
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8023
     '        ' asUnicode16String isBlank
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8024
    "
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8025
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8026
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8027
isKeywordSelector
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8028
    "return true, iff there are only alphanumeric or underline characters separated by colons.
19682
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8029
     Must end with a colon.
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8030
     You can use this to check an arbitrary string for being valid as a keyword.
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8031
     If you have a valid selector at hand, and need to know if it is a keyword or not,
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8032
     use #isKeyword, which is much faster."
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8033
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8034
    |state|
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8035
19682
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8036
    (self size == 0) ifTrue:[^ false].
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8037
    (self last == $:) ifFalse:[^ false].
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8038
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  8039
    state := #initial.
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8040
    self do:[:char |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8041
	(state == #initial or:[ state == #gotColon]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8042
	    (char isLetterOrUnderline) ifFalse:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8043
	    state := #gotCharacter.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8044
	] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8045
	    char == $: ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8046
		state := #gotColon.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8047
	    ] ifFalse:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8048
		(char isLetterOrDigit or:[char == $_]) ifFalse:[^ false].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8049
	    ].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8050
	].
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8051
    ].
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8052
    ^ state == #gotColon.
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8053
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8054
    "
12177
63eb5d728567 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 12171
diff changeset
  8055
     self assert:(':' isKeywordSelector not).
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8056
     self assert:(':a' isKeywordSelector not).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8057
     self assert:('1:' isKeywordSelector not).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8058
     self assert:('a:' isKeywordSelector).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8059
     self assert:('_:' isKeywordSelector).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8060
     self assert:('_a:' isKeywordSelector).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8061
     self assert:('_1:' isKeywordSelector).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8062
     self assert:('_1::' isKeywordSelector not).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8063
     self assert:('_:_:' isKeywordSelector).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8064
     self assert:('a:b:' isKeywordSelector).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8065
     self assert:('aa:bb:' isKeywordSelector).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8066
     self assert:('aa:bb:a' isKeywordSelector not).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8067
     self assert:('1:2:' isKeywordSelector not).
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8068
    "
19682
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8069
906bee103d14 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19677
diff changeset
  8070
    "Modified (comment): / 30-04-2016 / 18:20:14 / cg"
10903
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8071
!
54a532a1558d isKeywordSelector
Claus Gittinger <cg@exept.de>
parents: 10883
diff changeset
  8072
10431
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8073
isNameSpaceSelector
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8074
    "Answer true if the receiver contains chars which form a nameSpace selector name.
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8075
     These are of the form ':<ns>::<sel>', where ns is the NameSpace and sel is the regular selector.
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8076
     For example, the #+ selector as seen by the Foo namespace would be actually #':Foo::+'.
17511
da227974be48 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17509
diff changeset
  8077
     This special format (a symbol starting with a colon) was chosen, because almost every other selector
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  8078
     is legal, and this can be checked quickly by just looking at the first character.
10431
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8079
     You cannot easily change this algorithm here, as it is also known by the VM's lookup function."
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8080
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8081
    |i|
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8082
16733
3f4622673efc comment/format only
Claus Gittinger <cg@exept.de>
parents: 16697
diff changeset
  8083
    (self at:1) == $: ifFalse:[^ false].
17511
da227974be48 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17509
diff changeset
  8084
10431
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8085
    i := self indexOf:$: startingAt:2.
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8086
    i == 0 ifTrue:[^ false].
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8087
    self size <= (i+1) ifTrue:[^ false].
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8088
    (self at:i+1) == $: ifFalse:[^ false].
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8089
    (self at:i+2) == $: ifTrue:[^ false].
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8090
    "/ could check if the rest after the ns-prefix and colons is a valid selector...
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8091
    ^ true
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8092
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8093
    "test:
10703
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8094
     self assert:('+' isNameSpaceSelector) not.
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8095
     self assert:(':+' isNameSpaceSelector) not.
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8096
     self assert:(':Foo:+' isNameSpaceSelector) not.
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8097
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8098
     self assert:(':Foo::+' isNameSpaceSelector).
d1e981878c9c Work around stx bug when compiling hash
Stefan Vogel <sv@exept.de>
parents: 10698
diff changeset
  8099
     self assert:(':Foo::bar:baz:' isNameSpaceSelector).
10431
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8100
    "
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8101
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8102
    "Created: / 05-03-2007 / 11:35:31 / cg"
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8103
!
6b7467f6d2d2 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 10353
diff changeset
  8104
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8105
isNumeric
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8106
    "return true, if the receiver is some numeric word;
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8107
     i.e. consists only of digits."
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8108
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8109
    self size == 0 ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8110
	^ false
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8111
    ].
10093
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  8112
    ^ self conform:[:char | char isDigit]
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8113
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8114
    "
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8115
     'helloWorld' isNumeric
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8116
     'foo1234' isNumeric
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8117
     'f1234' isNumeric
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8118
     '1234' isNumeric
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8119
     '+' isNumeric
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8120
    "
10093
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  8121
8cff5eca1c6f code cleanup: use #contains/#conform instead of explicit loop
Claus Gittinger <cg@exept.de>
parents: 10088
diff changeset
  8122
    "Modified: / 13-10-2006 / 12:54:12 / cg"
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8123
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8124
18893
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
  8125
isPlainString
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
  8126
    "return true, if the receiver is a plain string (without attributes);
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
  8127
     true is returned here - redefinition of Object>>isPlainString."
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
  8128
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
  8129
    ^ true
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
  8130
!
1b22469ca763 #FEATURE
Stefan Vogel <sv@exept.de>
parents: 18884
diff changeset
  8131
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8132
isString
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8133
    "return true, if the receiver is some kind of string;
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8134
     true is returned here - redefinition of Object>>isString."
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8135
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8136
    ^ true
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8137
!
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8138
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8139
isUnarySelector
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8140
    "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
  8141
17442
eccdc56fffa4 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 17371
diff changeset
  8142
    ^ (self first isLetterOrUnderline)
9845
361f4b5d7b19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9522
diff changeset
  8143
      and:[ self conform: [ :chr | chr isLetterOrDigit or:[chr == $_] ]]
361f4b5d7b19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9522
diff changeset
  8144
361f4b5d7b19 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9522
diff changeset
  8145
    "Modified: / 13-09-2006 / 11:35:15 / cg"
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8146
!
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8147
14122
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8148
isUnicode16String
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8149
    ^ false
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8150
!
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8151
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8152
isUnicode32String
19939
4fd56994c47f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 19938
diff changeset
  8153
    "true if this is a 4-byte unicode string"
4fd56994c47f #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 19938
diff changeset
  8154
14122
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8155
    ^ false
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8156
!
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8157
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8158
isUnicodeString
19938
33dfd505e161 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19920
diff changeset
  8159
    "true if this is a 2- or 4-byte unicode string
33dfd505e161 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19920
diff changeset
  8160
     (i.e. not a single byte string).
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
  8161
     Notice, that the name is misleading:
19938
33dfd505e161 #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 19920
diff changeset
  8162
     all strings are use unicode encoding"
20194
9356fbae8941 #OTHER by mawalch
mawalch
parents: 20182
diff changeset
  8163
14122
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8164
    ^ false
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8165
!
Stefan Vogel <sv@exept.de>
parents: 14054
diff changeset
  8166
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8167
isValidSmalltalkIdentifier
19464
03da0faa1876 #DOCUMENTATION
Claus Gittinger <cg@exept.de>
parents: 19420
diff changeset
  8168
    "return true, if the receiver's characters make up a valid smalltalk identifier"
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8169
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8170
    |scanner tok|
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8171
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8172
    scanner := Compiler new.
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8173
    scanner source:(self readStream).
11630
6db5956f188f isValidSmalltalkIdentifier: return true/false (catch parseError)
Claus Gittinger <cg@exept.de>
parents: 11565
diff changeset
  8174
    Parser parseErrorSignal handle:[:ex |
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8175
	tok := nil.
11630
6db5956f188f isValidSmalltalkIdentifier: return true/false (catch parseError)
Claus Gittinger <cg@exept.de>
parents: 11565
diff changeset
  8176
    ] do:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8177
	tok := scanner nextToken.
11630
6db5956f188f isValidSmalltalkIdentifier: return true/false (catch parseError)
Claus Gittinger <cg@exept.de>
parents: 11565
diff changeset
  8178
    ].
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8179
    tok ~~ #Identifier ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8180
	^ false
9230
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8181
    ].
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8182
    scanner tokenPosition == 1 ifFalse:[^ false].
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8183
    ^ scanner sourceStream atEnd.
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8184
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8185
    "
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8186
     'foo' isValidSmalltalkIdentifier
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8187
     '1foo' isValidSmalltalkIdentifier
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8188
     '_foo' isValidSmalltalkIdentifier
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8189
     '_foo_bar_' isValidSmalltalkIdentifier
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8190
     'foo ' isValidSmalltalkIdentifier
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8191
     ' foo' isValidSmalltalkIdentifier
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8192
    "
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8193
!
9c12f7612321 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9195
diff changeset
  8194
14555
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  8195
isWideString
19580
fdd3c217ff36 #OTHER by cg
Claus Gittinger <cg@exept.de>
parents: 19497
diff changeset
  8196
    "true if I require more than one byte per character"
19775
cfffb072d9a3 withoutPrefix/withoutSuffix
Claus Gittinger <cg@exept.de>
parents: 19774
diff changeset
  8197
15829
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  8198
    |string|
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  8199
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  8200
    (string := self string) ~~ self ifTrue:[
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8201
	^ string isWideString.
15829
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  8202
    ].
46b5bea19daa class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 15814
diff changeset
  8203
    ^ self contains:[:aCharacter | aCharacter codePoint > 16rFF].
14555
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  8204
!
2872ee4b234f class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14456
diff changeset
  8205
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8206
numArgs
18463
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  8207
    <resource: #obsolete>
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8208
    "treating the receiver as a message selector, return how many arguments would it take"
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8209
18463
8c5f3917b2e8 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18425
diff changeset
  8210
    ^ self argumentCount
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8211
!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8212
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8213
partsIfSelector
14629
6491c3b25cd5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14609
diff changeset
  8214
    "treat the receiver as a message selector, return a collection of parts.
6491c3b25cd5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14609
diff changeset
  8215
     Notice: this is more tolerant than Smalltalk's syntax would suggest;
6491c3b25cd5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14609
diff changeset
  8216
     especially it allows for empty keyword parts between colons.
6491c3b25cd5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14609
diff changeset
  8217
     This is not (and should not be checked here), to allow parsing of
6491c3b25cd5 class: CharacterArray
Claus Gittinger <cg@exept.de>
parents: 14609
diff changeset
  8218
     degenerate selectors as appearing with objectiveC."
608
cd5ac440fa95 checkin from browser
Claus Gittinger <cg@exept.de>
parents: 581
diff changeset
  8219
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8220
    |idx1 "{ Class: SmallInteger }"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8221
     coll idx2 sz|
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8222
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8223
    coll := OrderedCollection new.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8224
    idx1 := 1.
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8225
    sz := self size.
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
  8226
    [
20012
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8227
	idx2 := self indexOf:$: startingAt:idx1.
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8228
	(idx2 == 0 or:[idx2 == sz]) ifTrue:[
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8229
	    coll add:(self copyFrom:idx1).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8230
	    ^ coll
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8231
	].
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8232
	coll add:(self copyFrom:idx1 to:idx2).
06acba6d608d #DOCUMENTATION by cg
Claus Gittinger <cg@exept.de>
parents: 20011
diff changeset
  8233
	idx1 := idx2 + 1
16245
d16f9c7d9428 [true] whileTrue: -> #loop
Stefan Vogel <sv@exept.de>
parents: 16212
diff changeset
  8234
    ] loop.
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8235
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8236
    "
18350
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  8237
     'foo:' partsIfSelector
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  8238
     'foo:bar:' partsIfSelector
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  8239
     'foo::::' partsIfSelector
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  8240
     #foo:bar: partsIfSelector
8f0102bb84f5 a send avoided in endsWith:
Claus Gittinger <cg@exept.de>
parents: 18318
diff changeset
  8241
     'hello' partsIfSelector
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8242
     '+' partsIfSelector
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8243
    "
64
af7aeb79b25e Initial revision
claus
parents:
diff changeset
  8244
! !
af7aeb79b25e Initial revision
claus
parents:
diff changeset
  8245
9192
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8246
!CharacterArray methodsFor:'tracing'!
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8247
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8248
traceInto:aRequestor level:level from:referrer
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8249
    "double dispatch into tracer, passing my type implicitely in the selector"
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8250
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8251
    ^ aRequestor traceCharacterArray:self level:level from:referrer
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8252
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8253
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8254
! !
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8255
2fb261f753f8 *** empty log message ***
Claus Gittinger <cg@exept.de>
parents: 9191
diff changeset
  8256
!CharacterArray methodsFor:'visiting'!
8395
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
  8257
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
  8258
acceptVisitor:aVisitor with:aParameter
16733
3f4622673efc comment/format only
Claus Gittinger <cg@exept.de>
parents: 16697
diff changeset
  8259
    "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
  8260
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
  8261
    ^ aVisitor visitString:self with:aParameter
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
  8262
! !
6bd97113cb4c Generalize visitor pattern and define #visit...:with: -methods instead
Stefan Vogel <sv@exept.de>
parents: 8376
diff changeset
  8263
1849
9f35f5934ec6 added msdos-latin1 en/decoder (code = #msdos850)
Claus Gittinger <cg@exept.de>
parents: 1669
diff changeset
  8264
!CharacterArray class methodsFor:'documentation'!
629
2ceefe9b5a19 version at the end
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
  8265
2ceefe9b5a19 version at the end
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
  8266
version
18476
5a7a334213f7 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18464
diff changeset
  8267
    ^ '$Header$'
12058
80a7dee97d3c comments
Claus Gittinger <cg@exept.de>
parents: 11955
diff changeset
  8268
!
80a7dee97d3c comments
Claus Gittinger <cg@exept.de>
parents: 11955
diff changeset
  8269
80a7dee97d3c comments
Claus Gittinger <cg@exept.de>
parents: 11955
diff changeset
  8270
version_CVS
18476
5a7a334213f7 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 18464
diff changeset
  8271
    ^ '$Header$'
629
2ceefe9b5a19 version at the end
Claus Gittinger <cg@exept.de>
parents: 608
diff changeset
  8272
! !
6809
72fee17c14b1 utf8 encoding fixed;
Claus Gittinger <cg@exept.de>
parents: 6743
diff changeset
  8273
14606
1aaaa6d79e54 class: CharacterArray
Stefan Vogel <sv@exept.de>
parents: 14592
diff changeset
  8274
2728
7569e45a4d15 raise error signal if anything goes wrong while decoding.
Claus Gittinger <cg@exept.de>
parents: 2721
diff changeset
  8275
CharacterArray initialize!