Hi all,
I am absolutely useless at regular expressions, so i'd appreciate your help.
I have a string, such as this:
$foo = 'Hello __("How are you") I am __("very good thank you")'
I know it's a strange string, but stay with me please :P
I need a regex expression that will look for the content between __("Look for content here") and put it in an array.
i.e. the regular expression would find "How are you" and "very good thank you".
Thanks very much.