java regex replace all characters before

Solutions on MaxInterview for java regex replace all characters before by the best coders in the world

showing results for - "java regex replace all characters before"
Asa
05 Apr 2019
1String s = "the text=text";
2String s1 = s.substring(s.indexOf("=")+1);
3s1.trim();