Sha256: e42e43a7a64a3d150898d26d0f835e6e1614c55d233372cdb9ba4d3d01ea01c6
Contents?: true
Size: 1.35 KB
Versions: 1
Compression:
Stored size: 1.35 KB
Contents
= Clio::String Require the Clio String library. require 'clio/string' Define a fest regular strings. @s1 = "Hi how are you." @s2 = "Fine thanks." Define the equivalent Clio strings. @c1 = Clio.string("Hi how are you.") @c2 = Clio.string("Fine thanks.") Applying #color apps the red ANSI code. r = @c1.color(:red) e = Clio::ANSICode.red(@s1) e.assert == r.to_s non-in-place delegation r = @c1.upcase e = @s1.upcase e.assert == r.to_s string addition r = @c1 + @c2 e = @s1 + @s2 e.assert == r.to_s string single index r = @c1[0] e = @s1[0,1] e.assert == r.to_s string size index r = @c1[0,3] e = @s1[0,3] e.assert == r.to_s string range index r = @c1[0..3] e = @s1[0..3] e.assert == r.to_s String addition s1 = Clio.string("a").red s2 = Clio.string("b").blue s = s1 + s2 s.to_s.assert == Clio::ANSICode.red('a') + Clio::ANSICode.blue('b') Method #sub can replace a substring. r = @c1.sub('Hi', 'Hello') r.to_s.assert == "Hello how are you." Method #gsub! can replace many substrings. s1 = Clio.string("axax").red s2 = Clio.string("axax").blue s = s1 + s2 s.to_s.assert == Clio::ANSICode.red('axax') + Clio::ANSICode.blue('axax') s.gsub!('x', 'y') s.to_s.assert == Clio::ANSICode.red('ayay') + Clio::ANSICode.blue('ayay')
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
clio-0.3.0 | spec/string/unit.rd |