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#[]=.

tojis

String#tojis => string Instance Public methods Convert self

2015-05-15 12:30:00
kconv

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

2015-05-15 11:45:36
start_with?

str.start_with?([prefixes]+) â true or false Instance Public methods Returns

2015-05-15 19:40:26
getbyte

str.getbyte(index) â 0 .. 255 Instance Public methods returns the

2015-05-15 16:37:46
insert

str.insert(index, other_str) â str Instance Public methods Inserts other_str

2015-05-15 17:06:07
each_char

str.each_char {|cstr| block } â strstr.each_char â an_enumerator Instance Public methods

2015-05-15 15:54:21
strip!

str.strip! â str or nil Instance Public methods Removes leading and trailing

2015-05-15 19:52:11
eql?

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

2015-05-15 16:28:16
prepend

str.prepend(other_str) â str Instance Public methods PrependâPrepend the given

2015-05-15 18:08:02
initialize_copy

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

2015-05-15 17:03:48