Class: String

Inherits:
Object show all
Includes:
Comparable
Defined in:
opal/opal/corelib/string.rb,
opal/opal/corelib/unsupported.rb,
opal/opal/corelib/string/encoding.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



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

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



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

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



19
20
21
22
# File 'opal/opal/corelib/string.rb', line 19

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

.try_convert(what) ⇒ Object



15
16
17
# File 'opal/opal/corelib/string.rb', line 15

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

Instance Method Details

#%(data) ⇒ Object



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

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

#*(count) ⇒ Object



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
76
77
# File 'opal/opal/corelib/string.rb', line 41

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



79
80
81
82
83
# File 'opal/opal/corelib/string.rb', line 79

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

  `self + #{other.to_s}`
end

#<<Object



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

def <<(*)
  raise NotImplementedError, `ERROR` % '<<'
end

#<=>(other) ⇒ Object



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

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?, ===



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

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



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

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

    return #{other =~ self};
  }
end

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



129
130
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
# File 'opal/opal/corelib/string.rb', line 129

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

    if (index.$$is_range) {
      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



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

def __id__
  `self.toString()`
end

#bytesObject



135
136
137
# File 'opal/opal/corelib/string/encoding.rb', line 135

def bytes
  each_byte.to_a
end

#bytesizeObject



139
140
141
# File 'opal/opal/corelib/string/encoding.rb', line 139

def bytesize
  @encoding.bytesize(self)
end

#capitalizeObject



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

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

#capitalize!Object



21
22
23
# File 'opal/opal/corelib/unsupported.rb', line 21

def capitalize!(*)
  raise NotImplementedError, `ERROR` % 'capitalize!'
end

#casecmp(other) ⇒ Object



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

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



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

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



263
264
265
266
267
# File 'opal/opal/corelib/string.rb', line 263

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

  each_char(&block)
end

#chomp(separator = $/) ⇒ Object



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

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

#chomp!Object



25
26
27
# File 'opal/opal/corelib/unsupported.rb', line 25

def chomp!(*)
  raise NotImplementedError, `ERROR` % 'chomp!'
end

#chopObject



293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
# File 'opal/opal/corelib/string.rb', line 293

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

#chop!Object



29
30
31
# File 'opal/opal/corelib/unsupported.rb', line 29

def chop!(*)
  raise NotImplementedError, `ERROR` % 'chop!'
end

#chrObject



310
311
312
# File 'opal/opal/corelib/string.rb', line 310

def chr
  `self.charAt(0)`
end

#cloneObject



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

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

#count(*sets) ⇒ Object



327
328
329
330
331
332
333
334
335
336
337
338
# File 'opal/opal/corelib/string.rb', line 327

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



340
341
342
343
344
345
346
347
348
349
350
351
# File 'opal/opal/corelib/string.rb', line 340

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



353
354
355
# File 'opal/opal/corelib/string.rb', line 353

def downcase
  `self.toLowerCase()`
end

#downcase!Object



33
34
35
# File 'opal/opal/corelib/unsupported.rb', line 33

def downcase!(*)
  raise NotImplementedError, `ERROR` % 'downcase!'
end

#dupObject



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

def dup
  copy = `self.slice()`
  copy.initialize_dup(self)
  copy
end

#each_byte(&block) ⇒ Object



143
144
145
146
147
148
149
# File 'opal/opal/corelib/string/encoding.rb', line 143

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

  @encoding.each_byte(self, &block)

  self
end

#each_char(&block) ⇒ Object



357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
# File 'opal/opal/corelib/string.rb', line 357

def each_char(&block)
  return enum_for(:each_char){self.size} unless block_given?

  %x{
    for (var i = 0, length = self.length; i < length; i++) {
      var value = Opal.yield1(block, self.charAt(i));

      if (value === $breaker) {
        return $breaker.$v;
      }
    }
  }

  self
end

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



373
374
375
376
377
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
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
# File 'opal/opal/corelib/string.rb', line 373

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

  %x{
    var value;

    if (separator === nil) {
      value = Opal.yield1(block, self);

      if (value === $breaker) {
        return value.$v;
      }
      else {
        return self;
      }
    }

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

    var a, i, n, length, chomped, trailing, splitted;

    if (separator.length === 0) {
      for (a = self.split(/(\n{2,})/), i = 0, n = a.length; i < n; i += 2) {
        if (a[i] || a[i + 1]) {
          value = Opal.yield1(block, (a[i] || "") + (a[i + 1] || ""));

          if (value === $breaker) {
            return value.$v;
          }
        }
      }

      return self;
    }

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

    for (i = 0, length = splitted.length; i < length; i++) {
      if (i < length - 1 || trailing) {
        value = Opal.yield1(block, splitted[i] + separator);

        if (value === $breaker) {
          return value.$v;
        }
      }
      else {
        value = Opal.yield1(block, splitted[i]);

        if (value === $breaker) {
          return value.$v;
        }
      }
    }
  }

  self
end

#empty?Boolean

Returns:



433
434
435
# File 'opal/opal/corelib/string.rb', line 433

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

#encode(encoding) ⇒ Object



151
152
153
# File 'opal/opal/corelib/string/encoding.rb', line 151

def encode(encoding)
  dup.force_encoding(encoding)
end

#encodingObject



155
156
157
# File 'opal/opal/corelib/string/encoding.rb', line 155

def encoding
  @encoding
end

#end_with?(*suffixes) ⇒ Boolean

Returns:



437
438
439
440
441
442
443
444
445
446
447
448
449
450
# File 'opal/opal/corelib/string.rb', line 437

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

#force_encoding(encoding) ⇒ Object

Raises:



159
160
161
162
163
164
165
166
167
168
169
170
171
172
# File 'opal/opal/corelib/string/encoding.rb', line 159

def force_encoding(encoding)
  encoding = Opal.coerce_to!(encoding, String, :to_str)
  encoding = Encoding.find(encoding)

  return self if encoding == @encoding
  raise ArgumentError, "unknown encoding name - #{encoding}" if encoding.nil?

  %x{
    var result = new String(self);
    result.encoding = encoding;

    return result;
  }
end

#getbyte(idx) ⇒ Object



174
175
176
# File 'opal/opal/corelib/string/encoding.rb', line 174

def getbyte(idx)
  @encoding.getbyte(self, idx)
end

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



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
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
# File 'opal/opal/corelib/string.rb', line 455

def gsub(pattern, replacement = undefined, &block)
  %x{
    if (replacement === undefined && block === nil) {
      return #{enum_for :gsub, pattern};
    }

    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) {
        _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

#gsub!Object



37
38
39
# File 'opal/opal/corelib/unsupported.rb', line 37

def gsub!(*)
  raise NotImplementedError, `ERROR` % 'gsub!'
end

#hashObject



526
527
528
# File 'opal/opal/corelib/string.rb', line 526

def hash
  `self.toString()`
end

#hexObject



530
531
532
# File 'opal/opal/corelib/string.rb', line 530

def hex
  to_i 16
end

#include?(other) ⇒ Boolean

Returns:



534
535
536
537
538
539
540
541
542
543
544
545
546
# File 'opal/opal/corelib/string.rb', line 534

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



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
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
# File 'opal/opal/corelib/string.rb', line 548

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



595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
# File 'opal/opal/corelib/string.rb', line 595

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



617
618
619
# File 'opal/opal/corelib/string.rb', line 617

def intern
  self
end

#lengthObject Also known as: size



626
627
628
# File 'opal/opal/corelib/string.rb', line 626

def length
  `self.length`
end

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



621
622
623
624
# File 'opal/opal/corelib/string.rb', line 621

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

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



630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
# File 'opal/opal/corelib/string.rb', line 630

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



654
655
656
# File 'opal/opal/corelib/string.rb', line 654

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

#lstrip!Object



41
42
43
# File 'opal/opal/corelib/unsupported.rb', line 41

def lstrip!(*)
  raise NotImplementedError, `ERROR` % 'lstrip!'
end

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



658
659
660
661
662
663
664
665
666
667
668
# File 'opal/opal/corelib/string.rb', line 658

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



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
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
# File 'opal/opal/corelib/string.rb', line 670

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

#next!Object



45
46
47
# File 'opal/opal/corelib/unsupported.rb', line 45

def next!(*)
  raise NotImplementedError, `ERROR` % 'next!'
end

#octObject



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
769
770
771
772
773
774
775
776
777
778
779
780
781
# File 'opal/opal/corelib/string.rb', line 740

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



783
784
785
# File 'opal/opal/corelib/string.rb', line 783

def ord
  `self.charCodeAt(0)`
end

#partition(sep) ⇒ Object



787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
# File 'opal/opal/corelib/string.rb', line 787

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



817
818
819
# File 'opal/opal/corelib/string.rb', line 817

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

#reverse!Object



49
50
51
# File 'opal/opal/corelib/unsupported.rb', line 49

def reverse!(*)
  raise NotImplementedError, `ERROR` % 'reverse!'
end

#rindex(search, offset = undefined) ⇒ Object



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
852
853
854
855
856
857
858
859
860
861
862
# File 'opal/opal/corelib/string.rb', line 821

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



864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
# File 'opal/opal/corelib/string.rb', line 864

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



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
914
915
916
917
918
919
920
921
922
923
924
# File 'opal/opal/corelib/string.rb', line 884

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



926
927
928
# File 'opal/opal/corelib/string.rb', line 926

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

#scan(pattern, &block) ⇒ Object



930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
# File 'opal/opal/corelib/string.rb', line 930

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

#slice!Object



53
54
55
# File 'opal/opal/corelib/unsupported.rb', line 53

def slice!(*)
  raise NotImplementedError, `ERROR` % 'slice!'
end

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



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
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
# File 'opal/opal/corelib/string.rb', line 965

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



1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
# File 'opal/opal/corelib/string.rb', line 1050

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

#squeeze!Object



57
58
59
# File 'opal/opal/corelib/unsupported.rb', line 57

def squeeze!(*)
  raise NotImplementedError, `ERROR` % 'squeeze!'
end

#start_with?(*prefixes) ⇒ Boolean

Returns:



1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
# File 'opal/opal/corelib/string.rb', line 1063

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



1077
1078
1079
# File 'opal/opal/corelib/string.rb', line 1077

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

#strip!Object



61
62
63
# File 'opal/opal/corelib/unsupported.rb', line 61

def strip!(*)
  raise NotImplementedError, `ERROR` % 'strip!'
end

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



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
1126
1127
1128
1129
1130
1131
# File 'opal/opal/corelib/string.rb', line 1081

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

#sub!Object



65
66
67
# File 'opal/opal/corelib/unsupported.rb', line 65

def sub!(*)
  raise NotImplementedError, `ERROR` % 'sub!'
end

#succ!Object



69
70
71
# File 'opal/opal/corelib/unsupported.rb', line 69

def succ!(*)
  raise NotImplementedError, `ERROR` % 'succ!'
end

#sum(n = 16) ⇒ Object



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

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



1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
# File 'opal/opal/corelib/string.rb', line 1155

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

#swapcase!Object



73
74
75
# File 'opal/opal/corelib/unsupported.rb', line 73

def swapcase!(*)
  raise NotImplementedError, `ERROR` % 'swapcase!'
end

#to_fObject



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

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



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
1243
# File 'opal/opal/corelib/string.rb', line 1186

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



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

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



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

def to_s
  `self.toString()`
end

#tr(from, to) ⇒ Object



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
1405
1406
# File 'opal/opal/corelib/string.rb', line 1264

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

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

    var new_str = ''
    for (i = 0, length = self.length; i < length; i++) {
      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!Object



77
78
79
# File 'opal/opal/corelib/unsupported.rb', line 77

def tr!(*)
  raise NotImplementedError, `ERROR` % 'tr!'
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
1568
# 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 i, in_range, c, ch, start, end, length;
    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;
    in_range = false;
    for (i = 0; i < from_length; i++) {
      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) {
        start = last_from.charCodeAt(0);
        end = ch.charCodeAt(0);
        if (start > end) {
          #{raise ArgumentError, "invalid range \"#{`String.fromCharCode(start)`}-#{`String.fromCharCode(end)`}\" in string transliteration"}
        }
        for (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 (i = 0; i < from_length; i++) {
        subs[from_chars[i]] = true;
      }
    }
    else {
      if (to_length > 0) {
        var to_chars_expanded = [];
        var last_to = null;
        in_range = false;
        for (i = 0; i < to_length; i++) {
          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) {
            start = last_from.charCodeAt(0);
            end = ch.charCodeAt(0);
            if (start > end) {
              #{raise ArgumentError, "invalid range \"#{`String.fromCharCode(start)`}-#{`String.fromCharCode(end)`}\" in string transliteration"}
            }
            for (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 (i = 0; i < length_diff; i++) {
          to_chars.push(pad_char);
        }
      }

      for (i = 0; i < from_length; i++) {
        subs[from_chars[i]] = to_chars[i];
      }
    }
    var new_str = ''
    var last_substitute = null
    for (i = 0, length = self.length; i < length; i++) {
      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

#tr_s!Object



81
82
83
# File 'opal/opal/corelib/unsupported.rb', line 81

def tr_s!(*)
  raise NotImplementedError, `ERROR` % 'tr_s!'
end

#upcaseObject



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

def upcase
  `self.toUpperCase()`
end

#upcase!Object



85
86
87
# File 'opal/opal/corelib/unsupported.rb', line 85

def upcase!(*)
  raise NotImplementedError, `ERROR` % 'upcase!'
end

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



1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
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
# File 'opal/opal/corelib/string.rb', line 1574

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(), value;

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

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

      while (a <= b) {
        if (excl && a === b) {
          break;
        }

        value = block(String.fromCharCode(a));
        if (value === $breaker) { return $breaker.$v; }

        a += 1;
      }

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

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

      while (a <= b) {
        if (excl && a === b) {
          break;
        }

        value = block(a.toString());
        if (value === $breaker) { return $breaker.$v; }

        a += 1;
      }

    } else {

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

        value = block(s);
        if (value === $breaker) { return $breaker.$v; }

        s = #{`s`.succ};
      }

    }
    return self;
  }
end