Help for this page

Select Code to Download


  1. or download this
    <SCRIPT LANGUAGE="JavaScript">
    var re = /([^\d\.]+)/g;
    ...
    var newstr = str.replace(re, "");
    <IMG SRC="https://www.google.com/perl.cgi?amount=newstr">
    </script>
    
  2. or download this
    my $str = $other_scripts_input;
    my $newstr;
    $newstr =~ s/([^\d\.]+)/g;
    print "<img src=\"http://www.someurl.com/perl.cgi?amount=$newstr\">";