- or download this
my @chunks = $sysex_dump =~ /\xF0C.[~z]((?:..LM 0087[A-Z][A-Z].+?)+)\
+xF7/gs;
my @parts;
...
{
push @parts, $1 while /(..LM 0087[A-Z][A-Z].+?)/gs;
}
- or download this
(..LM 0087[A-Z][A-Z].+?)
# ^^ <= here they are
- or download this
/\xF0C.[~z](\.\.LM 0087[A-Z][A-Z].+?)+\xF7/s