What\'s the best way to remove the first word from a string in Java?
If I have
String originalString = \"This is a string\";
I want to r
This will definitely a good solution
String originalString = "This is a string"; originalString =originalString.replaceFirst("This ", "");