regexp on String object
Jul 06
2008
2008
Comments Off
Some of the more rarely used string methods:
str = "the tester" str["tester"] #true, the String contains "tester" str[/\w+\s\w+/] #true, the String matches the regexp
emulates capitalize!
str[/(\w+)/] = ($1[0] - 32).chr