Tag: UIPath
-
Here are my most commonly used VB expressions for handling date, string, and array/collection values. Will add more to these as I go along. UIPath activities essentially use VB.NET expressions so their API browser is extremely helpful in learning functions and syntax. .NET API Browser:https://docs.microsoft.com/en-us/dotnet/api/?view=netframework-4.7.2 String How to print new line on Message Box Use… Continue reading
-
The Filter property in Get Outlook Mail Messages allows you to set a filter for the messages to be retrieved from the specified mail folder. Note that the Filter argument is for STRICT filters only. Meaning, wildcards and regex matches won’t work. For example: This filter retrieves messages received on the current month: This filter retrieves messages with the… Continue reading
-
I have a scenario here where I wanted to extract a value inside a parentheses. Using the Matches activity in UIPath, I’m able to do just that. Here’s how: Look for Matches activity and drop it on your workspace. I added a Message Box below to see the output. On the Properties panel, fill in… Continue reading