So i made this regex: [0-3][0-9][0-1][0-9]\d{2}-\d{4}?[^0-9]
But when i use this regex it will find numbers as 100880-1098.
But it will also find numbers as 661651100880-1098.
Is there a way to close it off in both ends so it dosent fin the numbers before or after the "100880-1098" ?
I have tried ^[0-3][0-9][0-1][0-9]\d{2}-\d{4}?[^0-9]$
but it dosent work