Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String getBlockPrefixByCdataName(String name) {
String[] strs = name.split("_");
if (strs == null || strs.length != 4) {
return null;
}
return "blk_" + strs[1];
}
}