Regex expression (2)

Hi All,

Can you please help me out in solving the below hurdle once again.
I want to use regex expression in my workflow for the particular type.

Steps to Reproduce:

  1. Go to https://regex101.com/
  2. Place the below text in “Test String” space provided.
    Actual Result : I don’t need 0,007 from the text mentioned below.

text to be inserted in Test String:
1,000
2,000
10,000
9,000
7,000
4,000
0,007
7,900
6,800
5.,400

Hi @ManojGL ,

Pattern:
​([1-9][0-9]*[\,\.]{1}[0-9]*)

Regards,
Arivu

Thanks @arivu96 it worked.