| Author |
String handling
|
Priyadharshini Nagarajan
Greenhorn
Joined: Sep 24, 2004
Posts: 22
|
|
Hi String x = new String("hai welcome , "); tell me how i can remove that last comma and space..
|
 |
Vijayendra V Rao
Ranch Hand
Joined: Jul 04, 2004
Posts: 195
|
|
A better way would be:
|
Vijayendra <br /> <br />"The harder you train in peace, the lesser you bleed in war"
|
 |
Priyadharshini Nagarajan
Greenhorn
Joined: Sep 24, 2004
Posts: 22
|
|
Hi i have to delete the last comma and space
|
 |
Ben Souther
Sheriff
Joined: Dec 11, 2004
Posts: 13410
|
|
This should really be in Java/Basic but, since your here.... Assuming you know that it will consistently be a ", ". If there are other variations that will need to be handled, look at the String's lastInstanceOf and trim methods, or better, if you can use jsdk1.4 or higher, the regexp tools that now ship with Java. [ January 21, 2005: Message edited by: Ben Souther ]
|
Java API J2EE API Servlet Spec JSP Spec How to ask a question... Simple Servlet Examples jsonf
|
 |
 |
I agree. Here's the link: jrebel
|
|
subject: String handling
|
|
|