Figures it would be that simple. I actually need a variable length number.
I actaully wanted: ‘width’ ‘^[0-9]+$’ (I guess) That worked. Thanks bobb On Sep 7, 2017, at 2:17 PM, Lime, Steve D (MNIT) <[email protected]<mailto:[email protected]>> wrote: ^[0-9]{12}$ means exactly 12 numbers, hence the error. You probably want something more like ^[0-9]{1,4}$ don’t you? --Steve
_______________________________________________ mapserver-users mailing list [email protected] https://lists.osgeo.org/mailman/listinfo/mapserver-users
