Hello,
I've a string containing the following data:
sdfsdfdsf
sdfsdsdf
Begin Item
itemtype ordecomplicatie32
ItemOptions 00000000000000000001000
ExtraOptions 11
ItemPlane 0
taborder 0
itemleft 3915
itemtop 3090
itemwidth 4620
itemheight 1095
End Item
jkghsdkjhsdjhfdsf
sdfdsf
Now I need a Regex to get the text between 'Begin Item' and 'End Item' I can't figure this out. This is the expression I've sofar:
(?s:Begin Item.(?<Text>.\<End Item\>*))
But it won't stop at 'End Item'
Could someone advice me please?
With best regards,
Alex van der Lans