using System;
public class SplitTest {
public static void Main() {
string str="london;usa;paris;germany"
string [] split = str.Split(new Char [] {';'});
foreach (string s in split) {
if (s.Trim() != "")
// Add code to create image object here
}
}
}