SyntaxFix
Write A Post
Hire A Developer
Questions
public String removeLastChar(String s) { if (!Util.isEmpty(s)) { s = s.substring(0, s.length()-1); } return s; }