Help for this page

Select Code to Download


  1. or download this
    $NetPattern = qr{mbist[\w+\d+\/]*\[\d+\]}x;
    if ($NetName =~  $NetPattern) {# Do fantastical things...}
    
  2. or download this
    $NetPattern = 'mbist[\w+\d+\/]*\[\d+\]';
    if ($NetName =~ qr/$NetPattern/x) {# Do fantastical things...}
    
  3. or download this
    $NetPattern = 'mbist[\w+\d+\/]*\[\d+\]';
    if ($NetName =~ m/$NetPattern/x) {# Do fantastical things...}