Help for this page

Select Code to Download


  1. or download this
    while ($text =~ m/'(((\\')|[^'])*)'/g) {
      if (length($1) > 3) {
        ...do something...
      }
    }
    
  2. or download this
    while ($text =~ m/'(((\\['\\])|[^'])*)'/g) {