|
|
@ -7,14 +7,35 @@ public class FactionUtil {
|
|
|
|
return splitString[splitString.length-1];
|
|
|
|
return splitString[splitString.length-1];
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static String getInstituteLeader(String instNm, boolean jang) {
|
|
|
|
public static String getInstituteLeader(String instNm, boolean person) {
|
|
|
|
if(instNm.endsWith("구") || instNm.endsWith("군")) {
|
|
|
|
String result = "";
|
|
|
|
instNm += "청";
|
|
|
|
|
|
|
|
}
|
|
|
|
if(person) {
|
|
|
|
if(jang) {
|
|
|
|
if(instNm.endsWith("시청") || instNm.endsWith("군청")) {
|
|
|
|
instNm += "장";
|
|
|
|
result = instNm.substring(0, instNm.length()-1);
|
|
|
|
|
|
|
|
} else if(instNm.endsWith("구")) {
|
|
|
|
|
|
|
|
result = instNm+"청";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
result = instNm;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(result.endsWith("군")){
|
|
|
|
|
|
|
|
result += "수";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
result += "장";
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(instNm.endsWith("시") || instNm.endsWith("군") || instNm.endsWith("구")) {
|
|
|
|
|
|
|
|
result = instNm+"청";
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
result = instNm;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return instNm;
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|