In Java, I have a String variable.
Sometimes the first character of the string is a comma ,
I want to remove the first char only if it is a comma.
What is the best approach to do this?
Something like:
text = text.startsWith(",") ? text.substring(1) : text;
is pretty simple...