Recent content by WillyD

  1. W

    I need help with Perl!!?

    if you want to print out special characters, you're going to want to use "printf" instead of "print". You can insert "%c" into the string of what you want to print, and then it'll convert the second argument of the function into the ASCII character that the number represents. So...
  2. W

    PHP and JavaScript help required?

    Hey. I think your issue might be your javascript port of the "strpos" PHP function. strpos in PHP returns the first occurance of a strong within a string... whereas it looks like your javascript port of the function uses lastIndexOf, which returns the last occurance of a character in a string...
Back
Top