How to do spliting in iteration

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

@Arun_Pondhe,

  1. Read text file and store in a variable
  2. 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 “,”
  3. Then use for each activity to iterate them