Java tutorial
//package com.java2s; public class Main { /** * Replace the pattern with the substitution */ public static String replace(Object src, Object pattern, Object substitution) { String result = src.toString().replaceAll(pattern.toString(), substitution.toString()); return result; } }