Class: String

Inherits:
Object
  • Object
show all
Includes:
Comparable
Defined in:
opal/opal/corelib/string.rb,
opal/opal/corelib/string/inheritance.rb

Defined Under Namespace

Classes: Wrapper

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Comparable

#<, #<=, #>, #>=, #between?, normalize

Constructor Details

#initialize(str = undefined) ⇒ String

Returns a new instance of String



22
23
24
25
26
27
28
29
# File 'opal/opal/corelib/string.rb', line 22

def initialize(str = undefined)
  %x{
    if (str === undefined) {
      return self;
    }
  }
  raise NotImplementedError, 'Mutable strings are not supported in Opal.'
end

Class Method Details

.inherited(klass) ⇒ Object



2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'opal/opal/corelib/string/inheritance.rb', line 2

def self.inherited(klass)
  replace = Class.new(String::Wrapper)

  %x{
    klass.$$proto         = replace.$$proto;
    klass.$$proto.$$class = klass;
    klass.$$alloc         = replace.$$alloc;
    klass.$$parent        = #{String::Wrapper};

    klass.$allocate = replace.$allocate;
    klass.$new      = replace.$new;
  }
end

.new(str = '') ⇒ Object



17
18
19
20
# File 'opal/opal/corelib/string.rb', line 17

def self.new(str = '')
  str = Opal.coerce_to(str, String, :to_str)
  `new String(str)`
end

.try_convert(what) ⇒ Object



13
14
15
# File 'opal/opal/corelib/string.rb', line 13

def self.try_convert(what)
  Opal.coerce_to?(what, String, :to_str)
end

Instance Method Details

#%(data) ⇒ Object



31
32
33
34
35
36
37
# File 'opal/opal/corelib/string.rb', line 31

def %(data)
  if Array === data
    format(self, *data)
  else
    format(self, data)
  end
end

#*(count) ⇒ Object



39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# File 'opal/opal/corelib/string.rb', line 39

def *(count)
  %x{
    count = #{Opal.coerce_to(`count`, Integer, :to_int)};

    if (count < 0) {
      #{raise ArgumentError, 'negative argument'}
    }

    if (count === 0) {
      return '';
    }

    var result = '',
        string = self.toString();

    // All credit for the bit-twiddling magic code below goes to Mozilla
    // polyfill implementation of String.prototype.repeat() posted here:
    // https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat

    if (string.length * count >= 1 << 28) {
      #{raise RangeError, 'multiply count must not overflow maximum string size'}
    }

    for (;;) {
      if ((count & 1) === 1) {
        result += string;
      }
      count >>>= 1;
      if (count === 0) {
        break;
      }
      string += string;
    }

    return result;
  }
end

#+(other) ⇒ Object



77
78
79
80
81
# File 'opal/opal/corelib/string.rb', line 77

def +(other)
  other = Opal.coerce_to other, String, :to_str

  `self + #{other.to_s}`
end

#<<(other) ⇒ Object Also known as: capitalize!, chomp!, chop!, downcase!, gsub!, lstrip!, next!, reverse!, slice!, squeeze!, strip!, sub!, succ!, swapcase!, tr!, tr_s!, upcase!



102
103
104
# File 'opal/opal/corelib/string.rb', line 102

def <<(other)
  raise NotImplementedError, '#<< not supported. Mutable String methods are not supported in Opal.'
end

#<=>(other) ⇒ Object



83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
# File 'opal/opal/corelib/string.rb', line 83

def <=>(other)
  if other.respond_to? :to_str
    other = other.to_str.to_s

    `self > other ? 1 : (self < other ? -1 : 0)`
  else
    %x{
      var cmp = #{other <=> self};

      if (cmp === nil) {
        return nil;
      }
      else {
        return cmp > 0 ? -1 : (cmp < 0 ? 1 : 0);
      }
    }
  end
end

#==(other) ⇒ Object Also known as: eql?, ===



106
107
108
109
110
111
112
113
114
115
116
# File 'opal/opal/corelib/string.rb', line 106

def ==(other)
  %x{
    if (other.$$is_string) {
      return self.toString() === other.toString();
    }
    if (#{Opal.respond_to? `other`, :to_str}) {
      return #{other == self};
    }
    return false;
  }
end

#=~(other) ⇒ Object



121
122
123
124
125
126
127
128
129
# File 'opal/opal/corelib/string.rb', line 121

def =~(other)
  %x{
    if (other.$$is_string) {
      #{raise TypeError, 'type mismatch: String given'};
    }

    return #{other =~ self};
  }
end

#[](index, length = undefined) ⇒ Object Also known as: slice



131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# File 'opal/opal/corelib/string.rb', line 131

def [](index, length = undefined)
  %x{
    var size = self.length;

    if (index.$$is_range) {
      var exclude = index.exclude,
          length  = #{Opal.coerce_to(`index.end`, Integer, :to_int)},
          index   = #{Opal.coerce_to(`index.begin`, Integer, :to_int)};

      if (Math.abs(index) > size) {
        return nil;
      }

      if (index < 0) {
        index += size;
      }

      if (length < 0) {
        length += size;
      }

      if (!exclude) {
        length += 1;
      }

      length = length - index;

      if (length < 0) {
        length = 0;
      }

      return self.substr(index, length);
    }


    if (index.$$is_string) {
      if (length != null) {
        #{raise TypeError}
      }
      return self.indexOf(index) !== -1 ? index : nil;
    }


    if (index.$$is_regexp) {
      var match = self.match(index);

      if (match === null) {
        #{$~ = nil}
        return nil;
      }

      #{$~ = MatchData.new(`index`, `match`)}

      if (length == null) {
        return match[0];
      }

      length = #{Opal.coerce_to(`length`, Integer, :to_int)};

      if (length < 0 && -length < match.length) {
        return match[length += match.length];
      }

      if (length >= 0 && length < match.length) {
        return match[length];
      }

      return nil;
    }


    index = #{Opal.coerce_to(`index`, Integer, :to_int)};

    if (index < 0) {
      index += size;
    }

    if (length == null) {
      if (index >= size || index < 0) {
        return nil;
      }
      return self.substr(index, 1);
    }

    length = #{Opal.coerce_to(`length`, Integer, :to_int)};

    if (length < 0) {
      return nil;
    }

    if (index > size || index < 0) {
      return nil;
    }

    return self.substr(index, length);
  }
end

#__id__Object Also known as: object_id



8
9
10
# File 'opal/opal/corelib/string.rb', line 8

def __id__
  `self.toString()`
end

#capitalizeObject



229
230
231
# File 'opal/opal/corelib/string.rb', line 229

def capitalize
  `self.charAt(0).toUpperCase() + self.substr(1).toLowerCase()`
end

#casecmp(other) ⇒ Object



235
236
237
238
239
240
241
242
243
244
245
# File 'opal/opal/corelib/string.rb', line 235

def casecmp(other)
  other = Opal.coerce_to(other, String, :to_str).to_s
  %x{
    var ascii_only = /^[\x00-\x7F]*$/;
    if (ascii_only.test(self) && ascii_only.test(other)) {
      self = self.toLowerCase();
      other = other.toLowerCase();
    }
  }
  self <=> other
end

#center(width, padstr = ' ') ⇒ Object



247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
# File 'opal/opal/corelib/string.rb', line 247

def center(width, padstr = ' ')
  width  = Opal.coerce_to(width, Integer, :to_int)
  padstr = Opal.coerce_to(padstr, String, :to_str).to_s

  if padstr.empty?
    raise ArgumentError, 'zero width padding'
  end

  return self if `width <= self.length`

  %x{
    var ljustified = #{ljust ((width + @length) / 2).ceil, padstr},
        rjustified = #{rjust ((width + @length) / 2).floor, padstr};

    return rjustified + ljustified.slice(self.length);
  }
end

#chars(&block) ⇒ Object



265
266
267
268
269
# File 'opal/opal/corelib/string.rb', line 265

def chars(&block)
  return each_char.to_a unless block

  each_char(&block)
end

#chomp(separator = $/) ⇒ Object



271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
# File 'opal/opal/corelib/string.rb', line 271

def chomp(separator = $/)
  return self if `separator === nil || self.length === 0`

  separator = Opal.coerce_to!(separator, String, :to_str).to_s

  %x{
    if (separator === "\n") {
      return self.replace(/\r?\n?$/, '');
    }
    else if (separator === "") {
      return self.replace(/(\r?\n)+$/, '');
    }
    else if (self.length > separator.length) {
      var tail = self.substr(self.length - separator.length, separator.length);

      if (tail === separator) {
        return self.substr(0, self.length - separator.length);
      }
    }
  }

  self
end

#chopObject



297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
# File 'opal/opal/corelib/string.rb', line 297

def chop
  %x{
    var length = self.length;

    if (length <= 1) {
      return "";
    }

    if (self.charAt(length - 1) === "\n" && self.charAt(length - 2) === "\r") {
      return self.substr(0, length - 2);
    }
    else {
      return self.substr(0, length - 1);
    }
  }
end

#chrObject



316
317
318
# File 'opal/opal/corelib/string.rb', line 316

def chr
  `self.charAt(0)`
end

#cloneObject Also known as: dup



320
321
322
323
324
# File 'opal/opal/corelib/string.rb', line 320

def clone
  copy = `self.slice()`
  copy.initialize_clone(self)
  copy
end

#count(*sets) ⇒ Object



332
333
334
335
336
337
338
339
340
341
342
343
# File 'opal/opal/corelib/string.rb', line 332

def count(*sets)
  %x{
    if (sets.length === 0) {
      #{raise ArgumentError, "ArgumentError: wrong number of arguments (0 for 1+)"}
    }
    var char_class = char_class_from_char_sets(sets);
    if (char_class === null) {
      return 0;
    }
    return self.length - self.replace(new RegExp(char_class, 'g'), '').length;
  }
end

#delete(*sets) ⇒ Object



345
346
347
348
349
350
351
352
353
354
355
356
# File 'opal/opal/corelib/string.rb', line 345

def delete(*sets)
  %x{
    if (sets.length === 0) {
      #{raise ArgumentError, "ArgumentError: wrong number of arguments (0 for 1+)"}
    }
    var char_class = char_class_from_char_sets(sets);
    if (char_class === null) {
      return self;
    }
    return self.replace(new RegExp(char_class, 'g'), '');
  }
end

#downcaseObject



360
361
362
# File 'opal/opal/corelib/string.rb', line 360

def downcase
  `self.toLowerCase()`
end

#each_char(&block) ⇒ Object



366
367
368
369
370
371
372
373
374
375
376
# File 'opal/opal/corelib/string.rb', line 366

def each_char(&block)
  return enum_for :each_char unless block_given?

  %x{
    for (var i = 0, length = self.length; i < length; i++) {
      #{yield `self.charAt(i)`};
    }
  }

  self
end

#each_line(separator = $/) ⇒ Object



378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
# File 'opal/opal/corelib/string.rb', line 378

def each_line(separator = $/)
  return enum_for :each_line, separator unless block_given?

  %x{
    if (separator === nil) {
      #{yield self};
      return self;
    }

    separator = #{Opal.coerce_to(`separator`, String, :to_str)}

    if (separator.length === 0) {
      for (var a = self.split(/(\n{2,})/), i = 0, n = a.length; i < n; i += 2) {
        if (a[i] || a[i + 1]) {
          #{yield `(a[i] || "") + (a[i + 1] || "")`};
        }
      }
      return self;
    }

    var chomped  = #{chomp(separator)},
        trailing = self.length != chomped.length,
        splitted = chomped.split(separator);

    for (var i = 0, length = splitted.length; i < length; i++) {
      if (i < length - 1 || trailing) {
        #{yield `splitted[i] + separator`};
      }
      else {
        #{yield `splitted[i]`};
      }
    }
  }

  self
end

#empty?Boolean

Returns:



415
416
417
# File 'opal/opal/corelib/string.rb', line 415

def empty?
  `self.length === 0`
end

#end_with?(*suffixes) ⇒ Boolean

Returns:



419
420
421
422
423
424
425
426
427
428
429
430
431
432
# File 'opal/opal/corelib/string.rb', line 419

def end_with?(*suffixes)
  %x{
    for (var i = 0, length = suffixes.length; i < length; i++) {
      var suffix = #{Opal.coerce_to(`suffixes[i]`, String, :to_str).to_s};

      if (self.length >= suffix.length &&
          self.substr(self.length - suffix.length, suffix.length) == suffix) {
        return true;
      }
    }
  }

  false
end

#freezeObject



1577
1578
1579
# File 'opal/opal/corelib/string.rb', line 1577

def freeze
  self
end

#frozen?Boolean

Returns:



1581
1582
1583
# File 'opal/opal/corelib/string.rb', line 1581

def frozen?
  true
end

#gsub(pattern, replacement = undefined, &block) ⇒ Object



437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
# File 'opal/opal/corelib/string.rb', line 437

def gsub(pattern, replacement = undefined, &block)
  %x{
    var result = '', match_data = nil, index = 0, match, _replacement;

    if (pattern.$$is_regexp) {
      pattern = new RegExp(pattern.source, 'gm' + (pattern.ignoreCase ? 'i' : ''));
    } else {
      pattern = #{Opal.coerce_to(`pattern`, String, :to_str)};
      pattern = new RegExp(pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'gm');
    }

    while (true) {
      match = pattern.exec(self);

      if (match === null) {
        #{$~ = nil}
        result += self.slice(index);
        break;
      }

      match_data = #{MatchData.new `pattern`, `match`};

      if (replacement === undefined) {
        if (block === nil) {
          #{raise ArgumentError, 'wrong number of arguments (1 for 2)'}
        }
        _replacement = block(match[0]);
      }
      else if (replacement.$$is_hash) {
        _replacement = #{`replacement`[`match[0]`].to_s};
      }
      else {
        if (!replacement.$$is_string) {
          replacement = #{Opal.coerce_to(`replacement`, String, :to_str)};
        }
        _replacement = replacement.replace(/([\\]+)([0-9+&`'])/g, function (original, slashes, command) {
          if (slashes.length % 2 === 0) {
            return original;
          }
          switch (command) {
          case "+":
            for (var i = match.length - 1; i > 0; i--) {
              if (match[i] !== undefined) {
                return slashes.slice(1) + match[i];
              }
            }
            return '';
          case "&": return slashes.slice(1) + match[0];
          case "`": return slashes.slice(1) + self.slice(0, match.index);
          case "'": return slashes.slice(1) + self.slice(match.index + match[0].length);
          default:  return slashes.slice(1) + (match[command] || '');
          }
        }).replace(/\\\\/g, '\\');
      }

      if (pattern.lastIndex === match.index) {
        result += (_replacement + self.slice(index, match.index + 1))
        pattern.lastIndex += 1;
      }
      else {
        result += (self.slice(index, match.index) + _replacement)
      }
      index = pattern.lastIndex;
    }

    #{$~ = `match_data`}
    return result;
  }
end

#hashObject



509
510
511
# File 'opal/opal/corelib/string.rb', line 509

def hash
  `self.toString()`
end

#hexObject



513
514
515
# File 'opal/opal/corelib/string.rb', line 513

def hex
  to_i 16
end

#include?(other) ⇒ Boolean

Returns:



517
518
519
520
521
522
523
524
525
526
527
528
529
# File 'opal/opal/corelib/string.rb', line 517

def include?(other)
  %x{
    if (other.$$is_string) {
      return self.indexOf(other) !== -1;
    }
  }

  unless other.respond_to? :to_str
    raise TypeError, "no implicit conversion of #{other.class} into String"
  end

  `self.indexOf(#{other.to_str}) !== -1`
end

#index(search, offset = undefined) ⇒ Object



531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
# File 'opal/opal/corelib/string.rb', line 531

def index(search, offset = undefined)
  %x{
    var index,
        match,
        regex;

    if (offset === undefined) {
      offset = 0;
    } else {
      offset = #{Opal.coerce_to(`offset`, Integer, :to_int)};
      if (offset < 0) {
        offset += self.length;
        if (offset < 0) {
          return nil;
        }
      }
    }

    if (search.$$is_regexp) {
      regex = new RegExp(search.source, 'gm' + (search.ignoreCase ? 'i' : ''));
      while (true) {
        match = regex.exec(self);
        if (match === null) {
          #{$~ = nil};
          index = -1;
          break;
        }
        if (match.index >= offset) {
          #{$~ = MatchData.new(`regex`, `match`)}
          index = match.index;
          break;
        }
        regex.lastIndex = match.index + 1;
      }
    } else {
      search = #{Opal.coerce_to(`search`, String, :to_str)};
      if (search.length === 0 && offset > self.length) {
        index = -1;
      } else {
        index = self.indexOf(search, offset);
      }
    }

    return index === -1 ? nil : index;
  }
end

#inspectObject



578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
# File 'opal/opal/corelib/string.rb', line 578

def inspect
  %x{
    var escapable = /[\\\"\x00-\x1f\x7f-\x9f\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g,
        meta = {
          '\u0007': '\\a',
          '\u001b': '\\e',
          '\b': '\\b',
          '\t': '\\t',
          '\n': '\\n',
          '\f': '\\f',
          '\r': '\\r',
          '\v': '\\v',
          '"' : '\\"',
          '\\': '\\\\'
        },
        escaped = self.replace(escapable, function (chr) {
          return meta[chr] || '\\u' + ('0000' + chr.charCodeAt(0).toString(16).toUpperCase()).slice(-4);
        });
    return '"' + escaped.replace(/\#[\$\@\{]/g, '\\$&') + '"';
  }
end

#internObject Also known as: to_sym



600
601
602
# File 'opal/opal/corelib/string.rb', line 600

def intern
  self
end

#lengthObject Also known as: size



609
610
611
# File 'opal/opal/corelib/string.rb', line 609

def length
  `self.length`
end

#lines(separator = $/, &block) ⇒ Object



604
605
606
607
# File 'opal/opal/corelib/string.rb', line 604

def lines(separator = $/, &block)
  e = each_line(separator, &block)
  block ? self : e.to_a
end

#ljust(width, padstr = ' ') ⇒ Object



613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
# File 'opal/opal/corelib/string.rb', line 613

def ljust(width, padstr = ' ')
  width  = Opal.coerce_to(width, Integer, :to_int)
  padstr = Opal.coerce_to(padstr, String, :to_str).to_s

  if padstr.empty?
    raise ArgumentError, 'zero width padding'
  end

  return self if `width <= self.length`

  %x{
    var index  = -1,
        result = "";

    width -= self.length;

    while (++index < width) {
      result += padstr;
    }

    return self + result.slice(0, width);
  }
end

#lstripObject



637
638
639
# File 'opal/opal/corelib/string.rb', line 637

def lstrip
  `self.replace(/^\s*/, '')`
end

#match(pattern, pos = undefined, &block) ⇒ Object



643
644
645
646
647
648
649
650
651
652
653
# File 'opal/opal/corelib/string.rb', line 643

def match(pattern, pos = undefined, &block)
  if String === pattern || pattern.respond_to?(:to_str)
    pattern = Regexp.new(pattern.to_str)
  end

  unless Regexp === pattern
    raise TypeError, "wrong argument type #{pattern.class} (expected Regexp)"
  end

  pattern.match(self, pos, &block)
end

#nextObject Also known as: succ



655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
# File 'opal/opal/corelib/string.rb', line 655

def next
  %x{
    var i = self.length;
    if (i === 0) {
      return '';
    }
    var result = self;
    var first_alphanum_char_index = self.search(/[a-zA-Z0-9]/);
    var carry = false;
    var code;
    while (i--) {
      code = self.charCodeAt(i);
      if ((code >= 48 && code <= 57) ||
        (code >= 65 && code <= 90) ||
        (code >= 97 && code <= 122)) {
        switch (code) {
        case 57:
          carry = true;
          code = 48;
          break;
        case 90:
          carry = true;
          code = 65;
          break;
        case 122:
          carry = true;
          code = 97;
          break;
        default:
          carry = false;
          code += 1;
        }
      } else {
        if (first_alphanum_char_index === -1) {
          if (code === 255) {
            carry = true;
            code = 0;
          } else {
            carry = false;
            code += 1;
          }
        } else {
          carry = true;
        }
      }
      result = result.slice(0, i) + String.fromCharCode(code) + result.slice(i + 1);
      if (carry && (i === 0 || i === first_alphanum_char_index)) {
        switch (code) {
        case 65:
          break;
        case 97:
          break;
        default:
          code += 1;
        }
        if (i === 0) {
          result = String.fromCharCode(code) + result;
        } else {
          result = result.slice(0, i) + String.fromCharCode(code) + result.slice(i);
        }
        carry = false;
      }
      if (!carry) {
        break;
      }
    }
    return result;
  }
end

#octObject



727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
# File 'opal/opal/corelib/string.rb', line 727

def oct
  %x{
    var result,
        string = self,
        radix = 8;

    if (/^\s*_/.test(string)) {
      return 0;
    }

    string = string.replace(/^(\s*[+-]?)(0[bodx]?)(.+)$/i, function (original, head, flag, tail) {
      switch (tail.charAt(0)) {
      case '+':
      case '-':
        return original;
      case '0':
        if (tail.charAt(1) === 'x' && flag === '0x') {
          return original;
        }
      }
      switch (flag) {
      case '0b':
        radix = 2;
        break;
      case '0':
      case '0o':
        radix = 8;
        break;
      case '0d':
        radix = 10;
        break;
      case '0x':
        radix = 16;
        break;
      }
      return head + tail;
    });

    result = parseInt(string.replace(/_(?!_)/g, ''), radix);
    return isNaN(result) ? 0 : result;
  }
end

#ordObject



770
771
772
# File 'opal/opal/corelib/string.rb', line 770

def ord
  `self.charCodeAt(0)`
end

#partition(sep) ⇒ Object



774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
# File 'opal/opal/corelib/string.rb', line 774

def partition(sep)
  %x{
    var i, m;

    if (sep.$$is_regexp) {
      m = sep.exec(self);
      if (m === null) {
        i = -1;
      } else {
        #{MatchData.new `sep`, `m`};
        sep = m[0];
        i = m.index;
      }
    } else {
      sep = #{Opal.coerce_to(`sep`, String, :to_str)};
      i = self.indexOf(sep);
    }

    if (i === -1) {
      return [self, '', ''];
    }

    return [
      self.slice(0, i),
      self.slice(i, i + sep.length),
      self.slice(i + sep.length)
    ];
  }
end

#reverseObject



804
805
806
# File 'opal/opal/corelib/string.rb', line 804

def reverse
  `self.split('').reverse().join('')`
end

#rindex(search, offset = undefined) ⇒ Object



810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
# File 'opal/opal/corelib/string.rb', line 810

def rindex(search, offset = undefined)
  %x{
    var i, m, r, _m;

    if (offset === undefined) {
      offset = self.length;
    } else {
      offset = #{Opal.coerce_to(`offset`, Integer, :to_int)};
      if (offset < 0) {
        offset += self.length;
        if (offset < 0) {
          return nil;
        }
      }
    }

    if (search.$$is_regexp) {
      m = null;
      r = new RegExp(search.source, 'gm' + (search.ignoreCase ? 'i' : ''));
      while (true) {
        _m = r.exec(self);
        if (_m === null || _m.index > offset) {
          break;
        }
        m = _m;
        r.lastIndex = m.index + 1;
      }
      if (m === null) {
        #{$~ = nil}
        i = -1;
      } else {
        #{MatchData.new `r`, `m`};
        i = m.index;
      }
    } else {
      search = #{Opal.coerce_to(`search`, String, :to_str)};
      i = self.lastIndexOf(search, offset);
    }

    return i === -1 ? nil : i;
  }
end

#rjust(width, padstr = ' ') ⇒ Object



853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
# File 'opal/opal/corelib/string.rb', line 853

def rjust(width, padstr = ' ')
  width  = Opal.coerce_to(width, Integer, :to_int)
  padstr = Opal.coerce_to(padstr, String, :to_str).to_s

  if padstr.empty?
    raise ArgumentError, 'zero width padding'
  end

  return self if `width <= self.length`

  %x{
    var chars     = Math.floor(width - self.length),
        patterns  = Math.floor(chars / padstr.length),
        result    = Array(patterns + 1).join(padstr),
        remaining = chars - result.length;

    return result + padstr.slice(0, remaining) + self;
  }
end

#rpartition(sep) ⇒ Object



873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
# File 'opal/opal/corelib/string.rb', line 873

def rpartition(sep)
  %x{
    var i, m, r, _m;

    if (sep.$$is_regexp) {
      m = null;
      r = new RegExp(sep.source, 'gm' + (sep.ignoreCase ? 'i' : ''));

      while (true) {
        _m = r.exec(self);
        if (_m === null) {
          break;
        }
        m = _m;
        r.lastIndex = m.index + 1;
      }

      if (m === null) {
        i = -1;
      } else {
        #{MatchData.new `r`, `m`};
        sep = m[0];
        i = m.index;
      }

    } else {
      sep = #{Opal.coerce_to(`sep`, String, :to_str)};
      i = self.lastIndexOf(sep);
    }

    if (i === -1) {
      return ['', '', self];
    }

    return [
      self.slice(0, i),
      self.slice(i, i + sep.length),
      self.slice(i + sep.length)
    ];
  }
end

#rstripObject



915
916
917
# File 'opal/opal/corelib/string.rb', line 915

def rstrip
  `self.replace(/[\s\u0000]*$/, '')`
end

#scan(pattern, &block) ⇒ Object



919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
# File 'opal/opal/corelib/string.rb', line 919

def scan(pattern, &block)
  %x{
    var result = [],
        match_data = nil,
        match;

    if (pattern.$$is_regexp) {
      pattern = new RegExp(pattern.source, 'gm' + (pattern.ignoreCase ? 'i' : ''));
    } else {
      pattern = #{Opal.coerce_to(`pattern`, String, :to_str)};
      pattern = new RegExp(pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'gm');
    }

    while ((match = pattern.exec(self)) != null) {
      match_data = #{MatchData.new `pattern`, `match`};
      if (block === nil) {
        match.length == 1 ? result.push(match[0]) : result.push(#{`match_data`.captures});
      } else {
        match.length == 1 ? block(match[0]) : block.call(self, #{`match_data`.captures});
      }
      if (pattern.lastIndex === match.index) {
        pattern.lastIndex += 1;
      }
    }

    #{$~ = `match_data`}

    return (block !== nil ? self : result);
  }
end

#split(pattern = undefined, limit = undefined) ⇒ Object



955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
# File 'opal/opal/corelib/string.rb', line 955

def split(pattern = undefined, limit = undefined)
  %x{
    if (self.length === 0) {
      return [];
    }

    if (limit === undefined) {
      limit = 0;
    } else {
      limit = #{Opal.coerce_to!(limit, Integer, :to_int)};
      if (limit === 1) {
        return [self];
      }
    }

    if (pattern === undefined || pattern === nil) {
      pattern = #{$; || ' '};
    }

    var result = [],
        string = self.toString(),
        index = 0,
        match,
        i;

    if (pattern.$$is_regexp) {
      pattern = new RegExp(pattern.source, 'gm' + (pattern.ignoreCase ? 'i' : ''));
    } else {
      pattern = #{Opal.coerce_to(pattern, String, :to_str).to_s};
      if (pattern === ' ') {
        pattern = /\s+/gm;
        string = string.replace(/^\s+/, '');
      } else {
        pattern = new RegExp(pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'), 'gm');
      }
    }

    result = string.split(pattern);

    if (result.length === 1 && result[0] === string) {
      return result;
    }

    while ((i = result.indexOf(undefined)) !== -1) {
      result.splice(i, 1);
    }

    if (limit === 0) {
      while (result[result.length - 1] === '') {
        result.length -= 1;
      }
      return result;
    }

    match = pattern.exec(string);

    if (limit < 0) {
      if (match !== null && match[0] === '' && pattern.source.indexOf('(?=') === -1) {
        for (i = 0; i < match.length; i++) {
          result.push('');
        }
      }
      return result;
    }

    if (match !== null && match[0] === '') {
      result.splice(limit - 1, result.length - 1, result.slice(limit - 1).join(''));
      return result;
    }

    i = 0;
    while (match !== null) {
      i++;
      index = pattern.lastIndex;
      if (i + 1 === limit) {
        break;
      }
      match = pattern.exec(string);
    }

    result.splice(limit - 1, result.length - 1, string.slice(index));
    return result;
  }
end

#squeeze(*sets) ⇒ Object



1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
# File 'opal/opal/corelib/string.rb', line 1040

def squeeze(*sets)
  %x{
    if (sets.length === 0) {
      return self.replace(/(.)\1+/g, '$1');
    }
    var char_class = char_class_from_char_sets(sets);
    if (char_class === null) {
      return self;
    }
    return self.replace(new RegExp('(' + char_class + ')\\1+', 'g'), '$1');
  }
end

#start_with?(*prefixes) ⇒ Boolean

Returns:



1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
# File 'opal/opal/corelib/string.rb', line 1055

def start_with?(*prefixes)
  %x{
    for (var i = 0, length = prefixes.length; i < length; i++) {
      var prefix = #{Opal.coerce_to(`prefixes[i]`, String, :to_str).to_s};

      if (self.indexOf(prefix) === 0) {
        return true;
      }
    }

    return false;
  }
end

#stripObject



1069
1070
1071
# File 'opal/opal/corelib/string.rb', line 1069

def strip
  `self.replace(/^\s*/, '').replace(/[\s\u0000]*$/, '')`
end

#sub(pattern, replacement = undefined, &block) ⇒ Object



1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
# File 'opal/opal/corelib/string.rb', line 1075

def sub(pattern, replacement = undefined, &block)
  %x{
    if (!pattern.$$is_regexp) {
      pattern = #{Opal.coerce_to(`pattern`, String, :to_str)};
      pattern = new RegExp(pattern.replace(/[.*+?^${}()|[\]\\]/g, '\\$&'));
    }

    var result = pattern.exec(self);

    if (result === null) {
      #{$~ = nil}
      return self.toString();
    }

    #{MatchData.new `pattern`, `result`}

    if (replacement === undefined) {
      if (block === nil) {
        #{raise ArgumentError, 'wrong number of arguments (1 for 2)'}
      }
      return self.slice(0, result.index) + block(result[0]) + self.slice(result.index + result[0].length);
    }

    if (replacement.$$is_hash) {
      return self.slice(0, result.index) + #{`replacement`[`result[0]`].to_s} + self.slice(result.index + result[0].length);
    }

    replacement = #{Opal.coerce_to(`replacement`, String, :to_str)};

    replacement = replacement.replace(/([\\]+)([0-9+&`'])/g, function (original, slashes, command) {
      if (slashes.length % 2 === 0) {
        return original;
      }
      switch (command) {
      case "+":
        for (var i = result.length - 1; i > 0; i--) {
          if (result[i] !== undefined) {
            return slashes.slice(1) + result[i];
          }
        }
        return '';
      case "&": return slashes.slice(1) + result[0];
      case "`": return slashes.slice(1) + self.slice(0, result.index);
      case "'": return slashes.slice(1) + self.slice(result.index + result[0].length);
      default:  return slashes.slice(1) + (result[command] || '');
      }
    }).replace(/\\\\/g, '\\');

    return self.slice(0, result.index) + replacement + self.slice(result.index + result[0].length);
  }
end

#sum(n = 16) ⇒ Object



1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
# File 'opal/opal/corelib/string.rb', line 1132

def sum(n = 16)
  %x{
    n = #{Opal.coerce_to(`n`, Integer, :to_int)};

    var result = 0,
        length = self.length,
        i = 0;

    for (; i < length; i++) {
      result += self.charCodeAt(i);
    }

    if (n <= 0) {
      return result;
    }

    return result & (Math.pow(2, n) - 1);
  }
end

#swapcaseObject



1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
# File 'opal/opal/corelib/string.rb', line 1152

def swapcase
  %x{
    var str = self.replace(/([a-z]+)|([A-Z]+)/g, function($0,$1,$2) {
      return $1 ? $0.toUpperCase() : $0.toLowerCase();
    });

    if (self.constructor === String) {
      return str;
    }

    return #{self.class.new `str`};
  }
end

#to_fObject



1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
# File 'opal/opal/corelib/string.rb', line 1168

def to_f
  %x{
    if (self.charAt(0) === '_') {
      return 0;
    }

    var result = parseFloat(self.replace(/_/g, ''));

    if (isNaN(result) || result == Infinity || result == -Infinity) {
      return 0;
    }
    else {
      return result;
    }
  }
end

#to_i(base = 10) ⇒ Object



1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
# File 'opal/opal/corelib/string.rb', line 1185

def to_i(base = 10)
  %x{
    var result,
        string = self.toLowerCase(),
        radix = #{Opal.coerce_to(`base`, Integer, :to_int)};

    if (radix === 1 || radix < 0 || radix > 36) {
      #{raise ArgumentError, "invalid radix #{`radix`}"}
    }

    if (/^\s*_/.test(string)) {
      return 0;
    }

    string = string.replace(/^(\s*[+-]?)(0[bodx]?)(.+)$/, function (original, head, flag, tail) {
      switch (tail.charAt(0)) {
      case '+':
      case '-':
        return original;
      case '0':
        if (tail.charAt(1) === 'x' && flag === '0x' && (radix === 0 || radix === 16)) {
          return original;
        }
      }
      switch (flag) {
      case '0b':
        if (radix === 0 || radix === 2) {
          radix = 2;
          return head + tail;
        }
        break;
      case '0':
      case '0o':
        if (radix === 0 || radix === 8) {
          radix = 8;
          return head + tail;
        }
        break;
      case '0d':
        if (radix === 0 || radix === 10) {
          radix = 10;
          return head + tail;
        }
        break;
      case '0x':
        if (radix === 0 || radix === 16) {
          radix = 16;
          return head + tail;
        }
        break;
      }
      return original
    });

    result = parseInt(string.replace(/_(?!_)/g, ''), radix);
    return isNaN(result) ? 0 : result;
  }
end

#to_procObject



1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
# File 'opal/opal/corelib/string.rb', line 1244

def to_proc
  # Give name to self in case this proc is passed to instance_eval
  sym = self

  proc do |*args, &block|
    raise ArgumentError, "no receiver given" if args.empty?
    obj = args.shift
    obj.__send__(sym, *args, &block)
  end
end

#to_sObject Also known as: to_str



1255
1256
1257
# File 'opal/opal/corelib/string.rb', line 1255

def to_s
  `self.toString()`
end

#tr(from, to) ⇒ Object



1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
# File 'opal/opal/corelib/string.rb', line 1263

def tr(from, to)
  from = Opal.coerce_to(from, String, :to_str).to_s
  to = Opal.coerce_to(to, String, :to_str).to_s
  %x{
    if (from.length == 0 || from === to) {
      return self;
    }

    var subs = {};
    var from_chars = from.split('');
    var from_length = from_chars.length;
    var to_chars = to.split('');
    var to_length = to_chars.length;

    var inverse = false;
    var global_sub = null;
    if (from_chars[0] === '^' && from_chars.length > 1) {
      inverse = true;
      from_chars.shift();
      global_sub = to_chars[to_length - 1]
      from_length -= 1;
    }

    var from_chars_expanded = [];
    var last_from = null;
    var in_range = false;
    for (var i = 0; i < from_length; i++) {
      var ch = from_chars[i];
      if (last_from == null) {
        last_from = ch;
        from_chars_expanded.push(ch);
      }
      else if (ch === '-') {
        if (last_from === '-') {
          from_chars_expanded.push('-');
          from_chars_expanded.push('-');
        }
        else if (i == from_length - 1) {
          from_chars_expanded.push('-');
        }
        else {
          in_range = true;
        }
      }
      else if (in_range) {
        var start = last_from.charCodeAt(0);
        var end = ch.charCodeAt(0);
        if (start > end) {
          #{raise ArgumentError, "invalid range \"#{`String.fromCharCode(start)`}-#{`String.fromCharCode(end)`}\" in string transliteration"}
        }
        for (var c = start + 1; c < end; c++) {
          from_chars_expanded.push(String.fromCharCode(c));
        }
        from_chars_expanded.push(ch);
        in_range = null;
        last_from = null;
      }
      else {
        from_chars_expanded.push(ch);
      }
    }

    from_chars = from_chars_expanded;
    from_length = from_chars.length;

    if (inverse) {
      for (var i = 0; i < from_length; i++) {
        subs[from_chars[i]] = true;
      }
    }
    else {
      if (to_length > 0) {
        var to_chars_expanded = [];
        var last_to = null;
        var in_range = false;
        for (var i = 0; i < to_length; i++) {
          var ch = to_chars[i];
          if (last_from == null) {
            last_from = ch;
            to_chars_expanded.push(ch);
          }
          else if (ch === '-') {
            if (last_to === '-') {
              to_chars_expanded.push('-');
              to_chars_expanded.push('-');
            }
            else if (i == to_length - 1) {
              to_chars_expanded.push('-');
            }
            else {
              in_range = true;
            }
          }
          else if (in_range) {
            var start = last_from.charCodeAt(0);
            var end = ch.charCodeAt(0);
            if (start > end) {
              #{raise ArgumentError, "invalid range \"#{`String.fromCharCode(start)`}-#{`String.fromCharCode(end)`}\" in string transliteration"}
            }
            for (var c = start + 1; c < end; c++) {
              to_chars_expanded.push(String.fromCharCode(c));
            }
            to_chars_expanded.push(ch);
            in_range = null;
            last_from = null;
          }
          else {
            to_chars_expanded.push(ch);
          }
        }

        to_chars = to_chars_expanded;
        to_length = to_chars.length;
      }

      var length_diff = from_length - to_length;
      if (length_diff > 0) {
        var pad_char = (to_length > 0 ? to_chars[to_length - 1] : '');
        for (var i = 0; i < length_diff; i++) {
          to_chars.push(pad_char);
        }
      }

      for (var i = 0; i < from_length; i++) {
        subs[from_chars[i]] = to_chars[i];
      }
    }

    var new_str = ''
    for (var i = 0, length = self.length; i < length; i++) {
      var ch = self.charAt(i);
      var sub = subs[ch];
      if (inverse) {
        new_str += (sub == null ? global_sub : ch);
      }
      else {
        new_str += (sub != null ? sub : ch);
      }
    }
    return new_str;
  }
end

#tr_s(from, to) ⇒ Object



1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
# File 'opal/opal/corelib/string.rb', line 1408

def tr_s(from, to)
  from = Opal.coerce_to(from, String, :to_str).to_s
  to = Opal.coerce_to(to, String, :to_str).to_s
  %x{
    if (from.length == 0) {
      return self;
    }

    var subs = {};
    var from_chars = from.split('');
    var from_length = from_chars.length;
    var to_chars = to.split('');
    var to_length = to_chars.length;

    var inverse = false;
    var global_sub = null;
    if (from_chars[0] === '^' && from_chars.length > 1) {
      inverse = true;
      from_chars.shift();
      global_sub = to_chars[to_length - 1]
      from_length -= 1;
    }

    var from_chars_expanded = [];
    var last_from = null;
    var in_range = false;
    for (var i = 0; i < from_length; i++) {
      var ch = from_chars[i];
      if (last_from == null) {
        last_from = ch;
        from_chars_expanded.push(ch);
      }
      else if (ch === '-') {
        if (last_from === '-') {
          from_chars_expanded.push('-');
          from_chars_expanded.push('-');
        }
        else if (i == from_length - 1) {
          from_chars_expanded.push('-');
        }
        else {
          in_range = true;
        }
      }
      else if (in_range) {
        var start = last_from.charCodeAt(0);
        var end = ch.charCodeAt(0);
        if (start > end) {
          #{raise ArgumentError, "invalid range \"#{`String.fromCharCode(start)`}-#{`String.fromCharCode(end)`}\" in string transliteration"}
        }
        for (var c = start + 1; c < end; c++) {
          from_chars_expanded.push(String.fromCharCode(c));
        }
        from_chars_expanded.push(ch);
        in_range = null;
        last_from = null;
      }
      else {
        from_chars_expanded.push(ch);
      }
    }

    from_chars = from_chars_expanded;
    from_length = from_chars.length;

    if (inverse) {
      for (var i = 0; i < from_length; i++) {
        subs[from_chars[i]] = true;
      }
    }
    else {
      if (to_length > 0) {
        var to_chars_expanded = [];
        var last_to = null;
        var in_range = false;
        for (var i = 0; i < to_length; i++) {
          var ch = to_chars[i];
          if (last_from == null) {
            last_from = ch;
            to_chars_expanded.push(ch);
          }
          else if (ch === '-') {
            if (last_to === '-') {
              to_chars_expanded.push('-');
              to_chars_expanded.push('-');
            }
            else if (i == to_length - 1) {
              to_chars_expanded.push('-');
            }
            else {
              in_range = true;
            }
          }
          else if (in_range) {
            var start = last_from.charCodeAt(0);
            var end = ch.charCodeAt(0);
            if (start > end) {
              #{raise ArgumentError, "invalid range \"#{`String.fromCharCode(start)`}-#{`String.fromCharCode(end)`}\" in string transliteration"}
            }
            for (var c = start + 1; c < end; c++) {
              to_chars_expanded.push(String.fromCharCode(c));
            }
            to_chars_expanded.push(ch);
            in_range = null;
            last_from = null;
          }
          else {
            to_chars_expanded.push(ch);
          }
        }

        to_chars = to_chars_expanded;
        to_length = to_chars.length;
      }

      var length_diff = from_length - to_length;
      if (length_diff > 0) {
        var pad_char = (to_length > 0 ? to_chars[to_length - 1] : '');
        for (var i = 0; i < length_diff; i++) {
          to_chars.push(pad_char);
        }
      }

      for (var i = 0; i < from_length; i++) {
        subs[from_chars[i]] = to_chars[i];
      }
    }
    var new_str = ''
    var last_substitute = null
    for (var i = 0, length = self.length; i < length; i++) {
      var ch = self.charAt(i);
      var sub = subs[ch]
      if (inverse) {
        if (sub == null) {
          if (last_substitute == null) {
            new_str += global_sub;
            last_substitute = true;
          }
        }
        else {
          new_str += ch;
          last_substitute = null;
        }
      }
      else {
        if (sub != null) {
          if (last_substitute == null || last_substitute !== sub) {
            new_str += sub;
            last_substitute = sub;
          }
        }
        else {
          new_str += ch;
          last_substitute = null;
        }
      }
    }
    return new_str;
  }
end

#upcaseObject



1571
1572
1573
# File 'opal/opal/corelib/string.rb', line 1571

def upcase
  `self.toUpperCase()`
end

#upto(stop, excl = false, &block) ⇒ Object



1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
# File 'opal/opal/corelib/string.rb', line 1585

def upto(stop, excl = false, &block)
  return enum_for :upto, stop, excl unless block_given?
  stop = Opal.coerce_to(stop, String, :to_str)
  %x{
    var a, b, s = self.toString();

    if (s.length === 1 && stop.length === 1) {

      a = s.charCodeAt(0);
      b = stop.charCodeAt(0);

      while (a <= b) {
        if (excl && a === b) {
          break;
        }
        block(String.fromCharCode(a));
        a += 1;
      }

    } else if (parseInt(s).toString() === s && parseInt(stop).toString() === stop) {

      a = parseInt(s);
      b = parseInt(stop);

      while (a <= b) {
        if (excl && a === b) {
          break;
        }
        block(a.toString());
        a += 1;
      }

    } else {

      while (s.length <= stop.length && s <= stop) {
        if (excl && s === stop) {
          break;
        }
        block(s);
        s = #{`s`.succ};
      }

    }
    return self;
  }
end