Forum: HTML and CSS Feb 3rd, 2006 |
| Replies: 3 Views: 3,254 |
Forum: Java Feb 3rd, 2006 |
| Replies: 3 Views: 1,400 |
Forum: Java Feb 2nd, 2006 |
| Replies: 3 Views: 1,400 Character class help.. 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... |
Forum: HTML and CSS Feb 2nd, 2006 |
| Replies: 3 Views: 3,254 dreamweaver button help how do i click a button and it browse to my C drive for a file inside dreamweaver??
sorry for asking such a noob question. |
Forum: Java Jan 31st, 2006 |
| Replies: 4 Views: 1,192 Re: String class help hey ya I tried like
String updating = "blue" <=== maybe orange or black etc..
char newString = (updating.substring(0,1)).toUpperCase().charAt(0);
... |
Forum: Java Jan 31st, 2006 |
| Replies: 4 Views: 1,192 Re: String class help let's say I have String b = blue
after I used
String newString = (blue.substring(0,1)).toUpperCase();
the new variable is only the "B"
what steps do i actually have to do to find the other words... |
Forum: Java Jan 31st, 2006 |
| Replies: 4 Views: 1,192 String class help hi I have some problem..
for instance i have a String s= blue
it maybe another string of yellow red whatever
how do i convert that b to B
i only read about s.charAt(0) to get the first letter .. |