I’ve been looking around the forums, and although I have been able to find topics like how to split string into characters, I was not able to adapt their solutions for my slightly different problem: I don’t want to split when encountering a certain character, rather I want to split on encountering a certain character limit. So I want to be able to break it down into say groups of 50 characters or so, I’ve been trying to figure out how to do it but I’m very new to UIPath and have been unable to find a solution. Any help would be greatly appreciated.
You can do most things with string manipulation through vb.net in UiPath, so there are various sources out there online to figure out how to do something like this.
One approach would be to use Regex.Matches() to create an array of any character up to certain length
Hi, I need help
I want to take the first 3 letters from a phone number (string variable) in a data table
I know how to get to the right column, the only problem for me is how to take the first 3 chars
Hi everyone, hope anyone of this thread can help me. I have a variable strMasked = 123456789012 , I want to convert the first few characters with “X” and retain the last the four digits as is. The output should be XXXXXXXX9012.
Apparently this is my code strMasked = right(dtExcelValue.Rows(intRowCounter).Item(“Settlement Account No.”).ToString.Replace(“strMasked”,“X”),4)
but the output I’m getting is only 9012. I want the output to be XXXXXXXX9012