Character class help..

Please support our Java advertiser: Programming Forums - DaniWeb Sister Site
Reply

Join Date: Jan 2006
Posts: 7
Reputation: BaileyFree is an unknown quantity at this point 
Solved Threads: 0
BaileyFree BaileyFree is offline Offline
Newbie Poster

Character class help..

 
0
  #1
Feb 2nd, 2006
hi I know that I have asked pretty much question recently.. I'm learning java myself and hence kinda can't really understand

the isDigit method..
error is cannot resolve symbol method isDigit(char)
I imported java.lang.* as well already .

public static boolean DigitValidation(String colour)
{
boolean flag = true;

for (int i =0; i<colour.length();i++)
{
char ch = colour.charAt(i);
if (colour.isDigit(ch))
{
flag= false;
break;
}
else flag = true;
}
return flag;
}
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 212
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: Character class help..

 
0
  #2
Feb 3rd, 2006
well, there is no isDigit method in String, which is what you're calling.
There is a static one in Character, which I guess you're thinking you're calling.
But you need to do that differently, something like Character.isDigit(ch)
As people are clearly allowed to attack me but I'm not allowed to defend myself, I no longer post to this site.
Reply With Quote Quick reply to this message  
Join Date: Jan 2006
Posts: 7
Reputation: BaileyFree is an unknown quantity at this point 
Solved Threads: 0
BaileyFree BaileyFree is offline Offline
Newbie Poster

Re: Character class help..

 
0
  #3
Feb 3rd, 2006
er may I enquire how do i use character.isDigit in this place then??
Reply With Quote Quick reply to this message  
Join Date: Nov 2004
Posts: 6,143
Reputation: jwenting is just really nice jwenting is just really nice jwenting is just really nice jwenting is just really nice 
Solved Threads: 212
Team Colleague
jwenting's Avatar
jwenting jwenting is offline Offline
duckman

Re: Character class help..

 
0
  #4
Feb 3rd, 2006
read the language documentation.
As people are clearly allowed to attack me but I'm not allowed to defend myself, I no longer post to this site.
Reply With Quote Quick reply to this message  
Reply

This thread is more than three months old.
Perhaps start a new thread instead?
Message:


Thread Tools Search this Thread



About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC