Hello All, my requirement is to fetch data from txt file. All the data which fulfil the criteria that it contains 5 numbers or beyond. Eg. if a number is 1234 then it should not be fetched but number like 12345 or 123456 or 1234567 or 12345678 so anything beyond five number should be fetched.
Use matches activity and in the properties (pattern) put “\d{5,}” and it should take your number .
1 Like
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.