tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Jodd > Strings > String replace last

String replace last 

Jodd is an open-source java library with lot of reusable components and feature rich utilities. This requires the library jodd-3.3.2.jar to be in classpath. The following example shows how to use StringUtil.replaceLast() API. It replaces the last occurrence of specified pattern in a string with a replacement string.

File Name  :  
com/bethecoder/tutorials/jodd/utils/StringReplaceLastTest.java 
Author  :  Sudhakar KV
Email  :  [email protected]
   
package com.bethecoder.tutorials.jodd.utils;

import jodd.util.StringUtil;

public class StringReplaceLastTest {

  /**
   @param args
   */
  public static void main(String[] args) {
    System.out.println(StringUtil.replaceLast("abcabcabc""abc""xyz"));
    System.out.println(StringUtil.replaceLast("abcabcabc""b""Z"));
    System.out.println(StringUtil.replaceLast("xyxyxy""yx""YX"));
  }

}
   

It gives the following output,
abcabcxyz
abcabcaZc
xyxYXy



 
  


  
bl  br