in app/redact/TextFinder.scala [16:20]
def findStringsMatchingRegex(document: PDDocument, needle: String): List[FoundText] = {
val textFinder = new RegexFinder(s"${needle.toLowerCase()}".r)
textFinder.getText(document)
textFinder.locations.result()
}