はじめてのオートメーションをわずか数分で作成できます。Studio Web を試す →
作成者: Internal Labs
2
スニペット
112
Hello, how do you convert a string into an array? Thank you for your information
Hi, You can convert string in to array using .ToCharArray or .ToArray method with the variable.
For ex: String value="UiPath"
char[]=value.toCharArray
For more info: https://www.dotnetperls.com/tochararray#:~:text=Call%20the%20ToCharArray%20method%20to,returns%20a%20new%20char%20array.
Hope this helps.