←
^
→
AJAX Tricks and Prototype
String
Tons of useful functions:
Camelize:
'background-color'.camelize()
Capitalize:
'background-color'.capitalize()
escapeHTML:
'Johnson & Johnson'.escapeHTML()
gsub:
'We demand rigidly defined areas of doubt and uncertainty'
.gsub(/[ei]/, function(match){if (match[0] == 'e') return 3; return 1;})
truncate:
'On the way back, they sang a number of tuneful and reflective songs on
the subjects of peace, justice, morality, culture, sport, family life,
and the obliteration of all other life forms.'.truncate(16, suffix ='...')
José M. Vidal
.
15 of 16