def candidateFromMatch()

in app/redact/TextFinder.scala [98:108]


  def candidateFromMatch(m: Regex.Match) = {
    Candidate(
      firstName = m.group(2),
      lastName = m.group(1),
      id = m.group(3),
      jobText = m.group(4).trim,
      jobId = "",
      firstPage = getCurrentPageNo - AnalyseCV.firstPageSplitDifference,
      lastPage = getCurrentPageNo - 1
    )
  }