Quantcast
Channel: KNIME RSS
Viewing all articles
Browse latest Browse all 4157

Regex split function

$
0
0

hi,

i want to use Regex Split to extract numeric numbers from product description but having difficulty to specify # of digits like shown below. any of below regex dont work to get desired ouput...all the expressions will return only 2digits number.

appreciate your help!

Regex tried

.*([0-9]?[0-9][0-9]).*

.*([0-9]{2,}).*

Sample input and desired output

hogeho 123 hoge --> 123

barbar 45bar --> 45


Viewing all articles
Browse latest Browse all 4157

Trending Articles