I want to extract the number sandwiched between two specific letters.
e.g. string: x23y4z90
I specify x and y , I get 23
I specify y and z , I get 4
I specify z and x , I get 90 (the string pattern loops)
x\dy
yields x23y
, but I don't want the letters included.
*note: This is to read sensor values serially in LabVIEW.