Re: a question about REGEXP

2019-09-20 Thread Peter Klügl
DigitInNum; NUM -> {"^\\d\\d(\\d)" -> 1 = ThirdDigitInNum;}; Best, Peter Am 20.09.2019 um 10:21 schrieb B. Li: > Hi All, > > > I have a question about REGEXP. I would like to extract a digit (e.g. the > third one) in a number (NUM). Could I use REGEXP to get th

a question about REGEXP

2019-09-20 Thread B. Li
Hi All, I have a question about REGEXP. I would like to extract a digit (e.g. the third one) in a number (NUM). Could I use REGEXP to get the result of a matched group (something like NUM{REGEXP("^\\d\\d(\\d)")})? Any hint would be greatly appreciated! Thanks in advance! Baoli