Help for this page

Select Code to Download


  1. or download this
    $_ = "hint int stint";
    s/(int)/$1$1$1/g;
    print;
    
  2. or download this
    hintintint intintint stintintint
    
  3. or download this
    $_ = "hint int stint";
    s/int/$&$&$&/g;
    print;
    
  4. or download this
    $_ = "hint int stint";
    s/\b(int)\b/$1$1$1/g;
    print;
    
  5. or download this
    hint intintint stint