I have a byte stream that comes into my app (its actually reading from a file, but this could change).
The data is of the form <tag><value>. Im looking for a specific tag, and wish to discard all others.
My thinking was to have a 'window' of length (taglength + valuelength), and push data into it, with old data dropping off the end. Then as soon as the first (taglength) bytes match the tag im interested in I can just get the whole window and process it.
I dont think there's anything in the SDK that matches my needs, but would love to be proven wrong. Any ideas?
EDIT: To clarify,the data isnt xml - ive just used angled brackets to show the delimitation. The data is actually a binary stream.