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 insert a String into another String

How to insert a String into another 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 use StringUtil.insert() API. It inserts the given substring at specified index in source string.

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

import jodd.util.StringUtil;

public class StringInsertTest {

  /**
   @param args
   */
  public static void main(String[] args) {
    System.out.println(StringUtil.insert("aaaa""BB"));
    System.out.println(StringUtil.insert("aaaa""BB"0));
    System.out.println(StringUtil.insert("aaaa""BB"1));
    System.out.println(StringUtil.insert("aaaa""BB"2));
    System.out.println(StringUtil.insert("aaaa""BB"3));
    System.out.println(StringUtil.insert("aaaa""BB"4));
  }

}
   

It gives the following output,
BBaaaa
BBaaaa
aBBaaa
aaBBaa
aaaBBa
aaaaBB



 
  


  
bl  br