com.devskiller.jfairy.producer.util.TextUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfairy Show documentation
Show all versions of jfairy Show documentation
Java fake data generator
/*
* 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