string.replaceFirst()

String.replaceFirst() replace First occurrence of matching char or string .
Here are some examples with output.
Replacing char
String str = "Welcome to plus2net.com";  
System.out.println(str.replaceFirst("o","*"));
Output is here
Welc*me to plus2net.com
Replacing string
String str = "Welcome to plus2net.com";  
System.out.println(str.replaceFirst("com","net"));
Output is here
Welnete to plus2net.com
Note : In above code, there is one replacement.

All String functions

Subscribe

* indicates required
Subscribe to plus2net

    plus2net.com



    Post your comments , suggestion , error , requirements etc here




    We use cookies to improve your browsing experience. . Learn more
    HTML MySQL PHP JavaScript ASP Photoshop Articles FORUM . Contact us
    ©2000-2024 plus2net.com All rights reserved worldwide Privacy Policy Disclaimer