Introduction
Here is the source code for Main.java
Source
//package com.java2s;
public class Main {
public static String stripIdFromName(String processName, int id) {
Integer ID = Integer.valueOf(id);
String[] result = processName.split(String.valueOf(id));
return result[0];
}
}