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

codepoints

str.codepoints â an_array Instance Public methods Returns an array of the

2015-05-15 15:12:16
toutf32

String#toutf32 => string Instance Public methods Convert self

2015-05-15 12:50:04
concat

str.concat(integer) â strstr.concat(obj) â str Instance Public methods

2015-05-15 15:13:25
+

str + other_str â new_str Instance Public methods ConcatenationâReturns a

2015-05-15 13:15:51
end_with?

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

2015-05-15 16:20:56
hex

str.hex â integer Instance Public methods Treats leading characters from

2015-05-15 16:52:55
isjis

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

2015-05-15 11:41:25
tr_s

str.tr_s(from_str, to_str) â new_str Instance Public methods Processes a

2015-05-15 20:55:14
crypt

str.crypt(salt_str) â new_str Instance Public methods Applies a one-way cryptographic

2015-05-15 15:24:34
=~

str =~ obj â fixnum or nil Instance Public methods MatchâIf obj

2015-05-15 13:45:02