Help for this page

Select Code to Download


  1. or download this
    my $text = "This is a test for the word blue more things blue and then
    + some very large text with a lot of things blue and done";
    
  2. or download this
    my $WANT = "blue";
    
    ...
                     (?:$WANT)
                     (?:\s+\w+){0,5}
                    /xgi;
    
  3. or download this
    a test for the word blue more things blue and then
    with a lot of things blue and done
    
  4. or download this
    a test for the word blue more things blue and then some very large
    with a lot of things blue and done
    
  5. or download this
    my $WANT = "blue";
    
    ...
                     (?:\s+\w+){0,5}
                     )?
                    /xgi;