tl  tr
  Home | Tutorials | Articles | Videos | Products | Tools | Search
Interviews | Open Source | Tag Cloud | Follow Us | Bookmark | Contact   
 Tools and Libs > Jodd > Strings > How to remove prefix and suffix of a String

How to remove prefix and suffix of a String 

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 remove prefix and suffix of a string using StringUtil.cutSurrounding() API.

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

import jodd.util.StringUtil;

public class StringCutSurroundTest {

  /**
   @param args
   */
  public static void main(String[] args) {
    System.out.println(StringUtil.cutSurrounding("==Java==""=="));
    System.out.println(StringUtil.cutSurrounding("<html>""<"">"));
    System.out.println(StringUtil.cutSurrounding("[ BE THE CODEDR ]""[ "" ]"));
  }

}
   

It gives the following output,
Java
html
BE THE CODEDR



 
  


  
bl  br