79236940

Date: 2024-11-29 11:37:03
Score: 0.5
Natty:
Report link

Try using this approach:

const text = `1066000;Byggnation plats bron;Byggnation allmän plats;"5501;5501112076";2000-03-11;2000-03-17;Överlämni;Ej startat;`;
const regex = /(?<=\")[^\"\r\n]*;[^\"\r\n]*(?=\")/g;
const matches = text.match(regex);
console.log(matches);  // ["5501;5501112076"]

Reasons:
  • Low length (0.5):
  • Has code block (-0.5):
  • Low reputation (0.5):
Posted by: Trushaba B. Jadeja