C
celerno
i need a regexp to parse some like this
<AwordHere> any thing here #$% #@$#@ /./09812 anything </AwordHere>
this works for that:
<(?<field>\w+)>(?<value>.*)(?<field></\w+>)
but when i have
<AwordHere> any thing here #$% #@$#@ /./09812 anything </AwordHere>
<OtherWordHere> any thing here #$% #@$#@ /./09812 anything </OtherWord>
my value string gets
"any thing here #$% #@$#@ /./09812 anything </AwordHere>
<OtherWordHere> any thing here #$% #@$#@ /./09812 anything"
can any one help me?... thanks...
<AwordHere> any thing here #$% #@$#@ /./09812 anything </AwordHere>
this works for that:
<(?<field>\w+)>(?<value>.*)(?<field></\w+>)
but when i have
<AwordHere> any thing here #$% #@$#@ /./09812 anything </AwordHere>
<OtherWordHere> any thing here #$% #@$#@ /./09812 anything </OtherWord>
my value string gets
"any thing here #$% #@$#@ /./09812 anything </AwordHere>
<OtherWordHere> any thing here #$% #@$#@ /./09812 anything"
can any one help me?... thanks...