/**
* @author lautturi.com
* Java example: replace first substring of string in java
*/
import java.util.*;
public class Lautturi {
public static void main(String[] args) {
String str = "welcome, hello lautturi, hello java";
str = str.replaceFirst("hello", "hi");
System.out.println(str);
}
}uoSrce:www.lautturi.comoutput:
welcome, hi lautturi, hello java