I am having an issue locating a specific set of words from within the OBX (using TCL in an XLATE).
I have an OBX field that contains formatting such as “.brAuthor: .br .brProcedure .brNEED THIS PART.brConfirmed: .br”
I am looking for the “NEED THIS PART” and I have tried a couple things and I can’t get it to locate it. I don’t need to capture the elements, just know that it exists in the message or not. So far I’ve tried (with OBX field as the Source):
set Value [lsearch -all $xlateInVals “NEED THIS PART”]
and
set Value [string first “NEED THIS PART” $xlateInVals] (hoping to return and index and all I get is -1 )
Any suggestions?
Thank you in advance.
Thank you,
Jon