I want to read this string from the asset 21,38,39 and split it with ,
Then I want to type it one by one
I want to read this string from the asset 21,38,39 and split it with ,
Then I want to type it one by one
Use the Get Asset activity to retrieve the value of an asset stored in Orchestrator.
Specify the name of the asset in the AssetName property and create a variable to store the output in the Value property.
Use the Assign activity to split the input string by comma and store it in an array of strings.
Use the Split method with a comma as the separator and assign it to a variable of type String.
output = Split(YourAssetOutput,",")
Example, output(0) will return “21”, output(1) will return “38”, and output(2) will return “39”
Regards
Gokul
Hi @Rawan_Ghurab,
assetValue = assetValue.Split(","c)