Hi team, I have an Excel file, and I want to retrieve all data based on the information in a text file. However, when I apply the filter, it’s not working as expected. Can someone please take a look into this
Thanks for the quick response, it’s working as expected. could you please guide how to achieve the same result with the help of filter data table activity?
Thanks for the quick response, it’s working as expected. could you please guide how to achieve the same result with the help of filter data table activity?
Thank you for your kind assistance! I have a question regarding regex patterns. I tried using the pattern \d.+ to extract IP addresses, but when I tried to filter the results, it did not work as expected. However, when I tried the pattern that you shared with me, it worked perfectly fine. I was wondering if you could please explain why there was a discrepancy between the two patterns?
1: \d This represents any digit character, equivalent to any character in the set [0-9]. It matches exactly one digit
2 : .+ will catches any character (except for newline characters. The plus sign + is a quantifier that means “one or more of the preceding element”. So, .+ matches one or more of any character following the initial digit.
It is possible your regex catches others characters too (include possible spaces), like this