FindOptions opt = new FindOptions();
opt.setRegexKey(true);
opt.setLookAtType(LookAtType.ENTIRE_CONTENT);
Cells cells = workbook.getWorksheets().get(1).getCells();
String regex = "<.*>";
System.out.println(cells.find(regex, null, opt));
This only prints the first cell that matches the regex . How can I get a collection of all the cells that match the regex?