Help for this page

Select Code to Download


  1. or download this
    Readonly my $REGEXP_READONLY => '999986';
      if( $l_line =~ m/$REGEXP_READONLY/ ) {
    ...
      if( $l_line =~ m/$l_search/o ) {
        # 0.69s - CORE:regcomp
        # 0.76s - CORE:match
    
  2. or download this
        # 0.91s - CORE:match  if( $l_line =~ m/$REGEXP_READONLY/ ) {
        # 0.75s - CORE:match  if( $l_line =~ m/${\REGEXP_CONSTANT}/ ) {
    ...
        # 0.78s - CORE:match  if( $l_line =~ $l_search_r ) {            # 
    +qr//
        # 0.76s - CORE:match  if( $l_line =~ m/$l_search/ ) {
        # 0.76s - CORE:match  if( $l_line =~ m/$l_search/o ) {          # 
    +/o
    
  3. or download this
        # 5.78s - CORE:regcomp if( $l_line =~ m/$REGEXP_READONLY/ ) {
        # 0.74s - CORE:regcomp if( $l_line =~ m/${\REGEXP_CONSTANT}/ ) {
    ...
        # 1.33s - CORE:regcomp if( $l_line =~ $l_search_r ) {           # 
    +qr//
        # 0.74s - CORE:regcomp if( $l_line =~ m/$l_search/ ) {
        # 0.69s - CORE:regcomp if( $l_line =~ m/$l_search/o ) {         # 
    +/o