I have a string that has a few control characters like these in it:
<SYN> = 0x16
<SOH> = 0x01
<STX> = 0x02
<EOT> = 0x04
<ETB> = 0x17
The data in between is actually string/ASCII data.
I was wondering how I could use Regex.Split to separate everything in between those characters?
The data is coming into the program via a serial port. So it may even be possible to do it there.
any ideas?
<SYN> = 0x16
<SOH> = 0x01
<STX> = 0x02
<EOT> = 0x04
<ETB> = 0x17
The data in between is actually string/ASCII data.
I was wondering how I could use Regex.Split to separate everything in between those characters?
The data is coming into the program via a serial port. So it may even be possible to do it there.
any ideas?