Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String getStickerId(String contentMsg) {
String[] data = contentMsg.split("_");
String idSticker = data[1];
if (idSticker != null) {
return idSticker;
} else {
return "";
}
}
}