The commons cli project has repeatedly used substring here. Can I simplify it 
to one

Similar to the following


static String stripLeadingAndTrailingQuotes(String str) {
    final int length = str.length();
    String tmp;
    if (length > 1 && str.startsWith("\"") && str.endsWith("\"") && (tmp = 
str.substring(1, length - 1)).indexOf('"') == -1) {
        return tmp;
    }

    return str;
}



This is from before

[cid:image001.png@01D98334.87534660]

Reply via email to