(\s+(\w*\.*\w*);){12}
The {n}
is a “repeat n times”
if you want “12 – 13” times,
(\s+(\w*\.*\w*);){12,13}
if you want “12+” times,
(\s+(\w*\.*\w*);){12,}
(\s+(\w*\.*\w*);){12}
The {n}
is a “repeat n times”
if you want “12 – 13” times,
(\s+(\w*\.*\w*);){12,13}
if you want “12+” times,
(\s+(\w*\.*\w*);){12,}