About 71,700 results
Open links in new tab
  1. Convert string to list - Studio - UiPath Community Forum

    Jun 29, 2023 · In UiPath Studio, if you want to convert a string to a list in C#, you can use the following code: string input = "Manoj,Sachin,Prem,Ravi"; List<string> list = …

  2. Converting user input string to array/list - UiPath Community Forum

    Sep 5, 2023 · In this expression, userArray is a variable of type String[], and we use ","c as the separator. 3. Convert to List (Optional): If you want to work with a list instead of an array, you …

  3. How to convert list of string to string - UiPath Community Forum

    Jul 28, 2023 · Hi @shanti_18 Use for each activity to iterate the List of String variable. Inside for each Place an assign activity and create a string variable. - Assign -> StringVar = …

  4. How to convert string to array list - UiPath Community Forum

    Apr 19, 2018 · Hi, I have a string with list of names extracted from get text, now how can i convert into array list separated by “,” so that i can use these list in loop.

  5. How to Convert string to IEnumerable<> - UiPath Community …

    Aug 24, 2021 · According to my workflow i am getting the data from the queue which is type of string and i need to loop it using parallel for each which requires type of IEnumerable. Is there …

  6. How to convert a path string to Local IResource - Studio - UiPath ...

    Nov 17, 2022 · Hello, After migrating to the newest version of Studio, the move file activity requires a Uipath Local IResource type instead of a string. How do I make the conversion? I …

  7. Linq to Convert String List in a DataTable - UiPath Community Forum

    Mar 18, 2024 · The string does not contain the line breaks, it only contains that string, I understand that the string can be converted into a list. But I want to know if it is possible, I …

  8. Converting array/list of file paths to IResource to use in …

    Feb 17, 2025 · I have a string array argument (e.g. arr_FilePath) containing a list of file paths that I need to add as attachments to the Send SMTP mail activity. Previously it was very …

  9. Convert arraylist to string - Help - UiPath Community Forum

    Mar 16, 2018 · Cna some pelase help me on How to print Values in Array variable as string. As I created an Array varaible and it is storing the values as a list and I wanted to print those values.

  10. How to put data from a column of datatable to list of string

    Dec 28, 2017 · Hi everyone, I am finding solution to put data from a column in a datatable into list of string. At the moment, I loop row by row in datatable and add each item value into list of string.