
Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
This assignnment was given by Babita Kalirai at Dhirubhai Ambani Institute of Information and Communication Technology for Advanced Computer Programming course. It includes: Factorial, User, Palindrome, Sequence, Matrix, , Multiplication, Array, Strings, Java
Typology: Exercises
1 / 1
This page cannot be seen from the preview
Don't miss anything!

public class String ReplaceFirst { public static void main(String[] args) { String str = "Her name is Tamana and Tamana is a good girl." ; String strreplace = "Sonia"; String result = str.replaceFirst("Tamana", strrepla); System.out.println(result); } }