string.rb 10.1 KB
Newer Older
1
class String
2

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
  ##
  #  call-seq:
  #     String.try_convert(obj) -> string or nil
  #
  # Try to convert <i>obj</i> into a String, using to_str method.
  # Returns converted string or nil if <i>obj</i> cannot be converted
  # for any reason.
  #
  #     String.try_convert("str")     #=> "str"
  #     String.try_convert(/re/)      #=> nil
  #
  def self.try_convert(obj)
    if obj.respond_to?(:to_str)
      obj.to_str
    else
      nil
    end
  end

22 23 24 25 26 27 28 29 30 31 32 33 34
  ##
  # call-seq:
  #    string.clear    ->  string
  #
  # Makes string empty.
  #
  #    a = "abcde"
  #    a.clear    #=> ""
  #
  def clear
    self.replace("")
  end

35 36 37 38 39 40 41 42 43 44
  ##
  # call-seq:
  #    str.lstrip   -> new_str
  #
  # Returns a copy of <i>str</i> with leading whitespace removed. See also
  # <code>String#rstrip</code> and <code>String#strip</code>.
  #
  #    "  hello  ".lstrip   #=> "hello  "
  #    "hello".lstrip       #=> "hello"
  #
45 46 47 48 49 50 51
  def lstrip
    a = 0
    z = self.size - 1
    a += 1 while " \f\n\r\t\v".include?(self[a]) and a <= z
    (z >= 0) ? self[a..z] : ""
  end

52 53 54 55 56 57 58 59 60 61
  ##
  # call-seq:
  #    str.rstrip   -> new_str
  #
  # Returns a copy of <i>str</i> with trailing whitespace removed. See also
  # <code>String#lstrip</code> and <code>String#strip</code>.
  #
  #    "  hello  ".rstrip   #=> "  hello"
  #    "hello".rstrip       #=> "hello"
  #
62 63 64 65 66 67 68
  def rstrip
    a = 0
    z = self.size - 1
    z -= 1 while " \f\n\r\t\v\0".include?(self[z]) and a <= z
    (z >= 0) ? self[a..z] : ""
  end

69 70 71 72 73 74 75 76 77
  ##
  # call-seq:
  #    str.strip   -> new_str
  #
  # Returns a copy of <i>str</i> with leading and trailing whitespace removed.
  #
  #    "    hello    ".strip   #=> "hello"
  #    "\tgoodbye\r\n".strip   #=> "goodbye"
  #
78 79 80 81 82 83 84 85
  def strip
    a = 0
    z = self.size - 1
    a += 1 while " \f\n\r\t\v".include?(self[a]) and a <= z
    z -= 1 while " \f\n\r\t\v\0".include?(self[z]) and a <= z
    (z >= 0) ? self[a..z] : ""
  end

86 87 88 89 90 91 92 93 94 95 96
  ##
  # call-seq:
  #    str.lstrip!   -> self or nil
  #
  # Removes leading whitespace from <i>str</i>, returning <code>nil</code> if no
  # change was made. See also <code>String#rstrip!</code> and
  # <code>String#strip!</code>.
  #
  #    "  hello  ".lstrip   #=> "hello  "
  #    "hello".lstrip!      #=> nil
  #
97 98 99 100 101
  def lstrip!
    s = self.lstrip
    (s == self) ? nil : self.replace(s)
  end

102 103 104 105 106 107 108 109 110 111 112
  ##
  # call-seq:
  #    str.rstrip!   -> self or nil
  #
  # Removes trailing whitespace from <i>str</i>, returning <code>nil</code> if
  # no change was made. See also <code>String#lstrip!</code> and
  # <code>String#strip!</code>.
  #
  #    "  hello  ".rstrip   #=> "  hello"
  #    "hello".rstrip!      #=> nil
  #
113 114 115 116 117
  def rstrip!
    s = self.rstrip
    (s == self) ? nil : self.replace(s)
  end

118 119 120 121 122 123 124
  ##
  #  call-seq:
  #     str.strip!   -> str or nil
  #
  #  Removes leading and trailing whitespace from <i>str</i>. Returns
  #  <code>nil</code> if <i>str</i> was not altered.
  #
125 126 127 128
  def strip!
    s = self.strip
    (s == self) ? nil : self.replace(s)
  end
129

130 131 132 133 134 135 136 137 138 139 140
  ##
  # call-seq:
  #    str.casecmp(other_str)   -> -1, 0, +1 or nil
  #
  # Case-insensitive version of <code>String#<=></code>.
  #
  #    "abcdef".casecmp("abcde")     #=> 1
  #    "aBcDeF".casecmp("abcdef")    #=> 0
  #    "abcdef".casecmp("abcdefg")   #=> -1
  #    "abcdef".casecmp("ABCDEF")    #=> 0
  #
141
  def casecmp(str)
142 143 144
    self.downcase <=> str.to_str.downcase
  rescue NoMethodError
    raise TypeError, "no implicit conversion of #{str.class} into String"
145
  end
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167

  def partition(sep)
    raise TypeError, "type mismatch: #{sep.class} given" unless sep.is_a? String
    n = index(sep)
    unless n.nil?
      m = n + sep.size
      [ slice(0, n), sep, slice(m, size - m) ]
    else
      [ self, "", "" ]
    end
  end

  def rpartition(sep)
    raise TypeError, "type mismatch: #{sep.class} given" unless sep.is_a? String
    n = rindex(sep)
    unless n.nil?
      m = n + sep.size
      [ slice(0, n), sep, slice(m, size - m) ]
    else
      [ "", "", self ]
    end
  end
Jun Hiroe's avatar
Jun Hiroe committed
168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185

  ##
  # call-seq:
  #    str.slice!(fixnum)           -> new_str or nil
  #    str.slice!(fixnum, fixnum)   -> new_str or nil
  #    str.slice!(range)            -> new_str or nil
  #    str.slice!(other_str)        -> new_str or nil
  #
  # Deletes the specified portion from <i>str</i>, and returns the portion
  # deleted.
  #
  #    string = "this is a string"
  #    string.slice!(2)        #=> "i"
  #    string.slice!(3..6)     #=> " is "
  #    string.slice!("r")      #=> "r"
  #    string                  #=> "thsa sting"
  #
  def slice!(arg1, arg2=nil)
186
    raise "wrong number of arguments (for 1..2)" if arg1.nil? && arg2.nil?
Jun Hiroe's avatar
Jun Hiroe committed
187

188
    if !arg1.nil? && !arg2.nil?
Jun Hiroe's avatar
Jun Hiroe committed
189 190
      idx = arg1
      idx += self.size if arg1 < 0
191
      if idx >= 0 && idx <= self.size && arg2 > 0
Jun Hiroe's avatar
Jun Hiroe committed
192 193 194 195 196 197 198 199 200 201 202
        str = self[idx, arg2]
      else
        return nil
      end
    else
      validated = false
      if arg1.kind_of?(Range)
        beg = arg1.begin
        ed = arg1.end
        beg += self.size if beg < 0
        ed += self.size if ed < 0
203
        ed -= 1 if arg1.exclude_end?
Jun Hiroe's avatar
Jun Hiroe committed
204 205 206 207 208 209 210 211 212 213 214 215 216 217
        validated = true
      elsif arg1.kind_of?(String)
        validated = true
      else
        idx = arg1
        idx += self.size if arg1 < 0
        validated = true if idx >=0 && arg1 < self.size   
      end
      if validated
        str = self[arg1]
      else
        return nil
      end
    end
218 219
    unless str.nil? || str == ""
      if !arg1.nil? && !arg2.nil?
Jun Hiroe's avatar
Jun Hiroe committed
220
        idx = arg1 >= 0 ? arg1 : self.size+arg1
221
        str2 = self[0...idx] + self[idx+arg2..-1].to_s
Jun Hiroe's avatar
Jun Hiroe committed
222 223 224 225
      else
        if arg1.kind_of?(Range)
          idx = beg >= 0 ? beg : self.size+beg
          idx2 = ed>= 0 ? ed : self.size+ed
226
          str2 = self[0...idx] + self[idx2+1..-1].to_s
Jun Hiroe's avatar
Jun Hiroe committed
227 228
        elsif arg1.kind_of?(String)
          idx = self.index(arg1)
229
          str2 = self[0...idx] + self[idx+arg1.size..-1] unless idx.nil?
Jun Hiroe's avatar
Jun Hiroe committed
230 231
        else
          idx = arg1 >= 0 ? arg1 : self.size+arg1
232
          str2 = self[0...idx] + self[idx+1..-1].to_s
Jun Hiroe's avatar
Jun Hiroe committed
233 234
        end
      end
235
      self.replace(str2) unless str2.nil?
Jun Hiroe's avatar
Jun Hiroe committed
236 237 238
    end
    str
  end
Jun Hiroe's avatar
Jun Hiroe committed
239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256

  ##
  #  call-seq:
  #     str.insert(index, other_str)   -> str
  #
  #  Inserts <i>other_str</i> before the character at the given
  #  <i>index</i>, modifying <i>str</i>. Negative indices count from the
  #  end of the string, and insert <em>after</em> the given character.
  #  The intent is insert <i>aString</i> so that it starts at the given
  #  <i>index</i>.
  #
  #     "abcd".insert(0, 'X')    #=> "Xabcd"
  #     "abcd".insert(3, 'X')    #=> "abcXd"
  #     "abcd".insert(4, 'X')    #=> "abcdX"
  #     "abcd".insert(-3, 'X')   #=> "abXcd"
  #     "abcd".insert(-1, 'X')   #=> "abcdX"
  #
  def insert(idx, str)
ksss's avatar
ksss committed
257 258 259 260 261 262 263
    if idx == -1
      return self << str
    elsif idx < 0
      idx += 1
    end
    self[idx, 0] = str
    self
Jun Hiroe's avatar
Jun Hiroe committed
264
  end
265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287

  ##
  #  call-seq:
  #     str.ljust(integer, padstr=' ')   -> new_str
  #
  #  If <i>integer</i> is greater than the length of <i>str</i>, returns a new
  #  <code>String</code> of length <i>integer</i> with <i>str</i> left justified
  #  and padded with <i>padstr</i>; otherwise, returns <i>str</i>.
  #
  #     "hello".ljust(4)            #=> "hello"
  #     "hello".ljust(20)           #=> "hello               "
  #     "hello".ljust(20, '1234')   #=> "hello123412341234123"
  def ljust(idx, padstr = ' ')
    if idx <= self.size
      return self
    end
    newstr = self.dup
    newstr << padstr
    while newstr.size <= idx
      newstr << padstr
    end
    return newstr.slice(0,idx)
  end
Jun Hiroe's avatar
Jun Hiroe committed
288

289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311
  ##
  #  call-seq:
  #     str.rjust(integer, padstr=' ')   -> new_str
  #
  #  If <i>integer</i> is greater than the length of <i>str</i>, returns a new
  #  <code>String</code> of length <i>integer</i> with <i>str</i> right justified
  #  and padded with <i>padstr</i>; otherwise, returns <i>str</i>.
  #
  #     "hello".rjust(4)            #=> "hello"
  #     "hello".rjust(20)           #=> "               hello"
  #     "hello".rjust(20, '1234')   #=> "123412341234123hello"
  def rjust(idx, padstr = ' ')
    if idx <= self.size
      return self
    end
      padsize = idx - self.size
      newstr = padstr.dup
      while newstr.size <= padsize
        newstr << padstr
      end
    return newstr.slice(0,padsize) + self
  end

Jun Hiroe's avatar
Jun Hiroe committed
312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353
  #     str.upto(other_str, exclusive=false) {|s| block }   -> str
  #     str.upto(other_str, exclusive=false)                -> an_enumerator
  #
  #  Iterates through successive values, starting at <i>str</i> and
  #  ending at <i>other_str</i> inclusive, passing each value in turn to
  #  the block. The <code>String#succ</code> method is used to generate
  #  each value.  If optional second argument exclusive is omitted or is false,
  #  the last value will be included; otherwise it will be excluded.
  #
  #  If no block is given, an enumerator is returned instead.
  #
  #     "a8".upto("b6") {|s| print s, ' ' }
  #     for s in "a8".."b6"
  #       print s, ' '
  #     end
  #
  #  <em>produces:</em>
  #
  #     a8 a9 b0 b1 b2 b3 b4 b5 b6
  #     a8 a9 b0 b1 b2 b3 b4 b5 b6
  #
  #  If <i>str</i> and <i>other_str</i> contains only ascii numeric characters,
  #  both are recognized as decimal numbers. In addition, the width of
  #  string (e.g. leading zeros) is handled appropriately.
  #
  #     "9".upto("11").to_a   #=> ["9", "10", "11"]
  #     "25".upto("5").to_a   #=> []
  #     "07".upto("11").to_a  #=> ["07", "08", "09", "10", "11"]
  #
  def upto(other_str, excl=false, &block)
    return to_enum :upto, other_str, excl unless block

    str = self
    n = self.<=>other_str
    return self if n > 0 || (self == other_str && excl)
    while true
      block.call(str)
      return self if !excl && str == other_str
      str = str.succ
      return self if excl && str == other_str
    end
  end
354 355 356 357 358 359 360 361 362 363 364

  def chars(&block)
    if block_given?
      self.split('').map do |i|
        block.call(i)
      end
      self
    else
      self.split('')
    end
  end
365 366 367 368 369 370 371 372 373

  def each_char(&block)
    return to_enum :each_char unless block

    split('').map do |i|
      block.call(i)
    end
    self
  end
374 375 376 377 378 379 380 381 382 383 384 385 386 387

  def codepoints(&block)
    len = self.size

    if block_given?
      self.split('').map do|x|
        block.call(x.ord)
      end
      self
    else
      self.split('').map{|x| x.ord}
    end
  end
  alias each_codepoint codepoints
388
end