how to remove everything after a character in java code example
Example 1: java remove character from string after
String result = input.split("-")[0];
Example 2: how to remove all characters before a certain character from a string in java
String s = "the text=text";
String s1 = s.substring(s.indexOf("=")+1);
s1.trim();