Java tutorial
//package com.java2s; public class Main { public static String removeQuote(String input) { return input.replace("\'", ""); } }