in reply to regex to reverse string

Any particular reason you want to use a regex? The reverse command might work for you:
print scalar reverse $string;

-- zigdon