I just want to know whether it is possible to pick up the data that is present between two delimiters (delimiter being a string).
For example the original string is as under
<message%20type%3D"info"%20code%3D"20005">%20<text>Conference%20successfully%20modified</text>%20<data>0117246</data>%20%20</message>%20
and I want the data that is present between <text>
tags. The string from which i need the data can be different. The string can also be like this
<message%20type%3D"info"%20code%3D"20001">%20<text>Conference%20deleted</text%20%20<vanity>0116976</vanity>%20</message>%20<message%20type%3D"info"%20code%3D"20002">%20<text>Number%20of%20conferences%20deleted</text>%20<data>1</data>%20%20</message>%20
but I always need the data present between the <text>
tags.
So is it possible in C language or is there any alternative?