/** * @author lautturi.com * Java example: Replace the first substring of string in java */ import java.util.*; public class Lautturi { public static void main(String[] args) { String str = "welcom to java world. java is a high-level programming language."; System.out.println(str); System.out.println(str.replaceFirst("java", "python")); } }Source:www.lautturi.com
output:
welcom to java world. java is a high-level programming language. welcom to python world. java is a high-level programming language.