This question already has an answer here:
- What is a good alternative of LTRIM and RTRIM in Java? 5 answers
I have a String printerName;
which is 256 characters long. I need to remove whitespaces from right side of the String so that I get only a valid printer name.
This solution:
st.replaceAll("\\s+","")
doesn't work, because a valid printerName can have a whitespaces. And I don't know how many characters I have to delete, becouse there can be many printers. What's the best solution for this?