fork(1) download
  1. object Main extends App {
  2. val theString = "abab/docId/example-doc1-2019-01-01"
  3. val stringFormat = ".*/docId/(([A-Za-z0-9]+)-[A-Za-z0-9-]+)".r
  4. val stringFormat(fullString, firstPart) = theString
  5. println(s"firstPart: '$firstPart'\nfullString: '$fullString'")
  6. }
Success #stdin #stdout 0.41s 2181632KB
stdin
Standard input is empty
stdout
firstPart: 'example'
fullString: 'example-doc1-2019-01-01'