posIDEnd = currentPLink.indexOf('\'', posID + 1);
}
// found valid plink
if (posIDEnd >= 0) {
String linkID = currentPLink.substring(posID, posIDEnd);
String out = pr.replacePLink(new CCPLinkInformation(linkID));
byte[] bytes = out.getBytes();
for (byte b : bytes) {
backBuf.offer(b);
}
}