Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Open Source License
public class Main {
public static String getSplitNewsId(String newsid) {
String s1 = newsid.substring(0, 3);
String s2 = newsid.substring(3);
return s1 + "/" + s2;
}
}