I have a String which contains the following sub string:
[Qual:3] [Text:PIX 1252471471953/YHYF/PPP121.40/10RTY10/NOLXX08X1] [Elem:123]
I'd like to extract the part between [Text: and ] i.e. PIX 1252471471953/YHYF/PPP121.40/10RTY10/NOLXX08X1.
How do I do this?
\\[Text:(.*)\\].*off the top of my headString.substring(int, int)andString.indexOf(String, int)