If the text was
<textarea>
xyz asdf qwr </textarea>
I'm trying to write a regular expression which will help me extract the text in bold.
So far I have reached [(<textarea)][</textarea>)]
which will capture the tags but I haven't been able to actually capture the text in between the two tags.
I also tried [(<textarea)]+.[</textarea>)]
and even [[(<textarea)]+.[</textarea>)]
but that too isn't giving the right results.
Can someone please throw some light on this or share some links which will help me reach a solution?