static String cidToKey(String cid) { int pos = cid.indexOf("="); if(pos >= 0 && pos < cid.length - 1) return cid.substring(pos + 1); return cid; }