All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.devskiller.jfairy.producer.util.TextUtils Maven / Gradle / Ivy

There is a newer version: 0.6.5
Show newest version
/*
 * Copyright (c) 2013. Codearte
 */
package com.devskiller.jfairy.producer.util;

import java.util.List;

import static com.google.common.base.Joiner.on;

public final class TextUtils {

	private TextUtils() {
	}

	public static String joinWithSpace(List result) {
		return on(" ").join(result);
	}

	public static String stripAccents(String s) {
		// Replace polish character ł since bug https://issues.apache.org/jira/browse/LANG-1120
		return org.apache.commons.lang3.StringUtils.stripAccents(s).replaceAll("ł", "l").replaceAll("Ł", "L");
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy