Introduction
Here is the source code for Main.java
Source
//package com.java2s;
//License from project: Apache License
public class Main {
/**
* by Jesse Gallegher
*
*/
public static String strLeft(String input, String delimiter) {
return input.substring(0, input.indexOf(delimiter));
}
}