Skip to content

Instantly share code, notes, and snippets.

@canokay
Last active November 15, 2018 08:26
Show Gist options
  • Save canokay/5a799714a4563a3b355813df78a02bde to your computer and use it in GitHub Desktop.
Save canokay/5a799714a4563a3b355813df78a02bde to your computer and use it in GitHub Desktop.
Java Replace Example
public class ReplaceExample {
public static void main(String[] args){
String yazi= "merhaba dünya";
System.out.println(yazi.replace("r","s"));
System.out.println(yazi.replace("merhaba","hello"));
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment