Type:
Class

Rake extension methods for String.

A String object holds and manipulates an arbitrary sequence of bytes, typically representing characters. String objects may be created using String::new or as literals.

Because of aliasing issues, users of strings should be aware of the methods that modify the contents of a String object. Typically, methods with names ending in “!'' modify their receiver, while those without a “!'' return a new String. However, there are exceptions, such as String#[]=.

downcase

str.downcase â new_str Instance Public methods Returns a copy of str

2015-05-15 15:35:52
initialize_copy

str.replace(other_str) â str Instance Public methods Replaces the contents

2015-05-15 17:03:48
clear

string.clear â string Instance Public methods Makes string empty.

2015-05-15 15:04:40
[]=

str[fixnum] = new_strstr[fixnum, fixnum] = new_strstr[range] = aStringstr[regexp] = new_strstr[regexp, fixnum] = new_strstr[regexp

2015-05-15 13:52:08
eql?

str.eql?(other) â true or false Instance Public methods Two strings are equal

2015-05-15 16:28:16
kconv

String#kconv(to_enc, from_enc) Instance Public methods Convert self

2015-05-15 11:45:36
oct

str.oct â integer Instance Public methods Treats leading characters of str

2015-05-15 17:54:28
to_d

string.to_d â bigdecimal Instance Public methods Convert string

2015-05-15 12:20:52
toeuc

String#toeuc => string Instance Public methods Convert self

2015-05-15 12:26:48
to_i

str.to_i(base=10) â integer Instance Public methods Returns the result of

2015-05-15 20:26:32