java regex replace all characters before

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

we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
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();