Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String getPrefix(String qName) {
int colonIndex = qName.indexOf(":");
if (colonIndex != -1) {
return qName.substring(0, colonIndex);
}
return qName;
}
}