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

toutf32

String#toutf32 => string Instance Public methods Convert self

2015-05-15 12:50:04
to_s

str.to_s â strstr.to_str â str Instance Public methods Returns the

2015-05-15 20:35:18
force_encoding

str.force_encoding(encoding) â str Instance Public methods Changes the encoding

2015-05-15 16:30:46
gsub!

str.gsub!(pattern, replacement) â str or nilstr.gsub!(pattern) {|match| block } â str or nilstr.gsub!(pattern) â an_enumerator

2015-05-15 16:45:34
tosjis

String#tosjis => string Instance Public methods Convert self

2015-05-15 12:40:40
isutf8

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

2015-05-15 11:44:13
pathmap

pathmap(spec=nil, &block) Instance Public methods Map the path according

2015-05-15 11:52:49
match

str.match(pattern) â matchdata or nilstr.match(pattern, pos) â matchdata or nil Instance Public methods

2015-05-15 17:37:18
partition

str.partition(sep) â [head, sep, tail]str.partition(regexp) â [head, match, tail] Instance

2015-05-15 18:06:13
chars

str.chars â an_array Instance Public methods Returns an array of characters

2015-05-15 14:37:13