Hey there
Can anyone help me with source code to be able to change the letter order of a word i.e. -> "hello" becomes "ehlol"
Thats is just an example. By the way, I don't want to use Math.random
Thanks
Gavin
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.
Hey there
Can anyone help me with source code to be able to change the letter order of a word i.e. -> "hello" becomes "ehlol"
Thats is just an example. By the way, I don't want to use Math.random
Thanks
Gavin
If you don't want to use Math.random, or java.util.Random, what ordering of output letters do you want to use?
That satisfies your requirements. If it is not what you want then you need to be more specific.String text = "hello"; System.out.println(text); text = "ehlol"; System.out.println(text);
Improving the world one idiot at a time!
String[random int]
Never mind, I figured it out...