Hi Aspose,
We are in the final phase of evaluating your product. Apart from many (great) working features, we are having a problem searching with regular expressions.
We are trying to find in our document the following text:
${Images|maxwidth=100|maxheight=100}
${Images|maxwidth=10|maxheight=90}
(basically the maxheight and maxwidth can vary).
We have developed a IReplacingCallback implementation and used the following code:
final ImageReplaceCallBack a = c.new ImageReplaceCallBack(fields);
result.getRange().replace(Pattern.compile("\\$\\{Images*\\}"), a, true);
But the callback is not being called. Notice that in the document, if we put ${Images}, the callback is called.
Thank you