Hello,
guys i need help to reverse this string
using basic method
i'm just a beginner in java
this is my code:
IT SHOULD SKIP COMMAS (,) AND FULLSTOP (.)
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hello,
guys i need help to reverse this string
using basic method
i'm just a beginner in java
this is my code:
IT SHOULD SKIP COMMAS (,) AND FULLSTOP (.)
Last edited by WantHelp; July 4th, 2011 at 01:49 PM.
I USE ECLIPSE
What are your problems? Errors? Then copy and paste the full and exact error messages. Incorrect behaviour? Then explain what your code does and what it should do instead.
One problem I can see, if you want to compare Strings (and other objects) 99% of the time you want to use the equals method and not ==.
I DID IT !!
Yes i did it and i reversed it
Just for fun:String foo = "bar"; foo = new StringBuilder(foo).reverse().toString();
Please stop removing your code.
Please use [highlight=Java] code [/highlight] tags when posting your code.
Forum Tip: Add to peoples reputation by clicking the button on their useful posts.