Пример #1
0
        private static string Read(string readLine)
        {
            if (readLine.StartsWith("http://"))
            {
                return("<" + readLine + ">");
            }
            var splitPrefixed = Prologue.SplitPrefixed(readLine);

            if (splitPrefixed.prefix == "bsbm-inst:")
            {
                string read = "<" + readLine.Replace("bsbm-inst:", "http://www4.wiwiss.fu-berlin.de/bizer/bsbm/v01/instances/") + ">";
                return(read);
            }
            return(readLine);
        }