Hey guys I have a string like the example below
“|stuff|stuff|stuff|stuff|stuff|stuff|stuff|stuff|here|stuff|stuff|stuff|stuff|stuff|”
And I need to split it on the 10th instance of “|” so that I can get:
“|stuff|stuff|stuff|stuff|stuff|stuff|stuff|stuff|here”
And I need to be able to target it on the specific instance of this character as I would use this function across mulitple bots. How can you do this is UiPath?
Is there a different code that will specifically target the instance of the pipe character?
The problem with the regex is in the bot its not actually going to say ‘stuff’ its going to have a pretty extensive variety of numbers, letters and various special characters and space characters.
Hey Yoichi, is there a way to then remove that same section from the original string?
So I was able to assign everything before the tenth pipe character to a new variable, but I’d also like to remove everything before the tenth pipe character from the original string as well.