Lets consider I have a string called
string s = "jpeg, jpg, gif, png";
So from this I need to get each one like, I can assign each extension to one var variable such as
var a = jpeg
var b = jpg
var c = gif
var d = png
Same way if I will add more extensions to the string then accordingly I will have to get all with same var variable.