fork download
  1. object Main extends App {
  2. val text = "irrelevant part[identifier]key1=val1;key2=val2;key3=val3"
  3. val regex = """(?:\G(?!^);|\[identifier])([\w-]+)=([^;]*)""".r
  4. val results = (regex findAllIn text).matchData.map(x => (x.group(1), x.group(2))).toMap
  5. println(results)
  6. }
Success #stdin #stdout 0.64s 73584KB
stdin
Standard input is empty
stdout
Map(key1 -> val1, key2 -> val2, key3 -> val3)