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

shellsplit

str.shellsplit => array Instance Public methods Splits str

2015-05-15 18:59:27
pathmap_replace

pathmap_replace(patterns, &block) Instance Public methods Preform the pathmap

2015-05-15 12:06:37
getbyte

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

2015-05-15 16:37:46
ext

ext(newext='') Instance Public methods Replace the file extension with newext

2015-05-15 11:37:18
insert

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

2015-05-15 17:06:07
toutf8

String#toutf8 => string Instance Public methods Convert self

2015-05-15 12:53:37
scan

str.scan(pattern) â arraystr.scan(pattern) {|match, ...| block } â str Instance

2015-05-15 18:41:05
strip!

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

2015-05-15 19:52:11
lstrip!

str.lstrip! â self or nil Instance Public methods Removes leading whitespace

2015-05-15 17:36:17
each_char

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

2015-05-15 15:54:21