Help for this page

Select Code to Download


  1. or download this
    $data =~ /[^\d]+([^ ]+)[^\d]+(\d+)(.*?)$/;
    
  2. or download this
    $data =~ /\D+(\S+)\D+(\d+)(.*)$/;
    
  3. or download this
    $data =~ /
              \D+   # One or more non-digits
    ...
                .*  #     rest of string
              )$    # Anchor above to end of string
            /x;