How an I use regex to find anything between 2 ASCII codes? ASCII code STX (\u0002) and ETX (\u0003)
Example string "STX,T1,ETXSTX,1,1,1,1,1,1,ETXSTX,A,1,0,B,ERRETX"
Using Regex on the above my matches should be
,T1,
,1,1,1,1,1,1,
,A,1,0,B,ERR
Did a bit of googling and I tried the following pattern but it didn't find anything.
@"^\u0002.*\u0003$"
UPDATE: Thank you all, some great answers below and all seem to work!

@"\u0002.*?\u0003"(?<=\x02).*?(?=\x03)if you don't like stx/etx in result.