I just came across this post from the forum...is that the only way to code the JOptionPane? Seems rather similar to Sys.out
http://www.javaprogrammingforums.com...ease-help.html
--- Update ---
I had more than this, but post was deleted somehow and this was the gist of it:
WHERE THE HECK DID MY POST GO!!!!!! IS THERE A WAY TO RECOVER??????
for(i = 0 ; i < charArray.length; i++){ if(Character.isDigit(charArray(i))){ address.replace("6", "*"); address.replace("7", "*");
Is there a better way to scan a character array for digits and replace any number in the array with another character ("*") in this case? The array is the address, " 1234 Runner Road " .