Help for this page

Select Code to Download


  1. or download this
      DB<1> $_ = "PID: , VID: 255, SN: AGM163923J5";
    
      DB<2> print $_ unless /PID: ,/;
    
      DB<3>
    
  2. or download this
    print $_ unless /PID:\s+,/;