Skip to content

Latest commit

 

History

History
270 lines (71 loc) · 3.22 KB

File metadata and controls

270 lines (71 loc) · 3.22 KB

pixie.string

blank?

True if s is nil, empty, or contains only whitespace.

capitalize

digits

ends-with?

escape

Return a new string, using cmap to escape each character ch

from s as follows:

If (cmap ch) is nil, append ch to the new string. If (cmap ch) is non-nil, append (str (cmap ch)) instead.

hexdigits

index-of

interp

String interpolation.

join

Join the elements of the collection using an optional separator

letters

lower

lower-case

octdigits

printable

punctuation

replace

Replace all occurrences of x in s with r.

replace-first

Replace the first occurrence of x in s with r.

reverse

Returns s with its characters reversed.

split

split-lines

Splits on n or rn, the two typical line breaks.

starts-with?

substring

trim

triml

trimr

upper

upper-case

whitespace

</body></html>