Hi I need an ICU regex that I think it is pretty basic but I don't know how to build it right. The regex should match strings like:
font-size: 9pt;
font-size: 15pt;
font-size:2pt;
font-size:22pt;
I'm trying to make something like this but it doesn't work:
regex = \bfont\-size: [0-9]{3}pt;\b
I'm really new to regex so I'm not sure what am I doing wrong here. Any help is much appreciated.
P.S.: Does anyone know a good resource to get the hang of this fast?