Hi, I have a text string that looks something like this…
LOT 4-6 DP 287 SEC 2-3 SO 345152 
I have a regex “(LOT \d+[\s?&-]\d+ DP \d+ ){1,}”  that grabs the LOT 4-6 DP 287 from the text line.
How can I split the 4-6 into separate attributes so I end up with
- Lot 4 DP 287
 - Lot 5 DP 287
 - Lot 6 DP 287
 
I could do it with a testfilter but there are unknown combinations. 1-12, 60-62, 78-82 etc
Any help is greatly appreciated.
Regards, Paul




