this syntax returns an array with a word key.
(?<item>\w+)
ex. $array['item']
I want the return value in this form but I want to search for a word that may or may not contain parentheses (with values in between).
"hello"
or
"hello(some text and line breaks)"
What is the syntax for this?
