Tag Archives: regex
Extracting Tables That Aren’t Tables: A Smarter Approach
If you’ve been following my previous posts, you would have realized that although the process delivers results, it delivers them after a considerable amount of time. Not only is the execution time lengthy, there is a level of complexity which is unavoidable, since we have to study the HTML structure first, then test out various…
Browser Migration Using Regex. Yes You Read That Correctly(Part-II)
In the previous post, we had a brief introduction to the concepts we will rely on to perform our browser migration. Yes, I am well aware that UiPath has a Browser Migration tool, but this isn’t being written to replace anything UiPath already has. This is to show you how reliable regex can be, once…
Browser Migration Using Regex. Yes, You Read That Correctly(Part-I)
Regular Expressions are a life saver, especially when dealing with complex pattern recognition. Once you become proficient at crafting regex patterns (or proficient enough to google the right patterns), you can slowly become creative with it. It happens naturally, as you start looking for patterns outside of regex – areas where you may apply regex…
UiPath: LINQ Is Not Everything
After learning LINQ, I started using it everywhere, even in situations that didn’t necessarily require it. Developing and testing LINQ is time consuming (I’m still a rookie), so I ended up wasting precious time that could have been better utilized on other projects (or articles). Don’t Get Me Wrong LINQ can achieve most outcomes, but…