Can I do splitting iteration for every line in text file after suppose i am splitting using " , "
@Arun_Pondhe Yes you can split
@indra how it is working for only one line
@Arun_Pondhe Read all text file lines and iterate that or can you post the sample text
- Read text file and store in a variable
- Use assign activity as string array = string.split(","c) , this will return you the array of strings you have in the entire string splitted with “,”
- Then use for each activity to iterate them