Help for this page

Select Code to Download


  1. 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;
    }
    
  2. or download this
      (..LM  0087[A-Z][A-Z].+?)
    #  ^^ <= here they are
    
  3. or download this
    /\xF0C.[~z](\.\.LM  0087[A-Z][A-Z].+?)+\xF7/s