Skip to end of banner
Go to start of banner

Export existing SIL aliases

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Export a CSV formatted list of all existing SIL aliases

struct _alias {
    string name;
    string id;
}

runnerLog("name,id");

string fileContent = readFromTextFile("../kepler/sil.aliases");
string [] fc = split(fileContent, "\r");

for(string a in fc) {
    if(!startsWith(a, "#")) {
        if(contains(a, "=")) {
            string line = replace(a, "\n", "");
            line = replace(line, "\r", "");
            
            _alias a = split(line, "=");
            runnerLog(a.name + "," + a.id);
        }
    }
}
  • No labels