Here you can find the source of underscoreToSpace(String text)
public static String underscoreToSpace(String text)
//package com.java2s; /*/* www . ja v a 2 s . c o m*/ * StringUtil.java * * Copyright (c) 2005-2009 Andrew Krizhanovsky <andrew.krizhanovsky at gmail.com> * Distributed under GNU Public License. */ public class Main { /** Substitutes all underscores by space character */ public static String underscoreToSpace(String text) { return text.replace('_', ' '); } }