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

lstrip

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

2015-05-15 17:31:04
bytes

str.bytes â an_array Instance Public methods Returns an array of bytes in

2015-05-15 14:08:32
sub

str.sub(pattern, replacement) â new_strstr.sub(pattern, hash) â new_strstr.sub(pattern) {|match| block } â new_str

2015-05-15 19:55:23
issjis

String#issjis => true or false Instance Public methods Returns whether

2015-05-15 11:43:16
size

str.size â integer Instance Public methods Returns the character length

2015-05-15 19:05:39
shellsplit

str.shellsplit => array Instance Public methods Splits str

2015-05-15 18:59:27
pathmap_partial

pathmap_partial(n) Instance Public methods Extract a partial path from the path

2015-05-15 12:05:39
capitalize

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

2015-05-15 14:18:29
tr

str.tr(from_str, to_str) => new_str Instance Public methods Returns a

2015-05-15 20:45:26
iseuc

String#iseuc => true or false Instance Public methods Returns whether

2015-05-15 11:40:20