in reply to string manipulation

Hi,

you can match any sequence of capital letters with the following simple regexp:

/[A-Z]+/
This captures one or more capitals. If you want to access the matched string, put parentheses around the pattern:
/([A-Z]+)/
and then the matched string will be in $1.

Have a look at perlre for more information on regular expressions.

CU
Robartes-