How to Split a String in UiPath Studio

0 votes

I am trying to split a string on string ‘not’ . String is “This is not a game” is in variable PDFVariable. So I use a variable Var of type String and assign as PDFVariable.ToString().Split(‘not’) and trying to see the output in Var. But I am getting error in the Assign box.

image

Nov 5, 2019 in RPA by anonymous
• 1,110 points
21,098 views

1 answer to this question.

0 votes

Hey there, you can use following methods to split your desired string:

Split(PDFvariable.tostring,“not”)

or you can use “Split string” activity in Expressions.

answered Nov 5, 2019 by Abha
• 28,140 points

Related Questions In RPA

0 votes
1 answer

How to select an item in UiPath that starts with a string

use a wildcard in selector. make sure that ...READ MORE

answered May 21, 2018 in RPA by wrecker
• 3,110 points
4,013 views
0 votes
1 answer

How to select an item in UiPath that starts with a string

Just use a wildcard in selector. Given ...READ MORE

answered May 28, 2018 in RPA by wrecker
• 3,110 points
1,592 views
0 votes
1 answer

How to select an item in UiPath that starts with a string?

Just use a wildcard in selector. Given ...READ MORE

answered Jun 30, 2018 in RPA by wrecker
• 3,110 points
1,762 views