[url=javascript:void(0);]substrCount()-Count how many times the string "wo" appears in the string "How much wood would a woodchuck chuck if a woodchuck could chuck wood" (5) [/url]
[url=javascript:void(0);]stripChars()-Strip the characters 'aeio' from the string "Denny Crane is cool!", then strip all characters EXCEPT 'DenyCran' [/url]
[url=javascript:void(0);]strContentValid()-Validate that the string "12345" only contains numbers (true), and then that the string "abc123" does not contain the character b (false) [/url]
[url=javascript:void(0);]replace()-Replace "wood" with "metal" in the string "How much wood would a woodchuck chuck if a woodchuck could chuck wood" [/url]
[url=javascript:void(0);]leftTrim()-Trim leading spaces from the string " test" (will display length before (6) and after (4) [/url]
[url=javascript:void(0);]rightTrim()-Trim trailing spaces from the string "test " (will display length before (6) and after (4)) [/url]
[url=javascript:void(0);]fullTrim()-Trim both leading and trailing spaces from the string " test " (will display length before (8) and after (4)) [/url]
[url=javascript:void(0);]breakLine()-Break up the string "All work and no play makes Homer go crazy" into 10 character chunks [/url]