
com.codeborne.pdftest.Spaces Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pdf-test Show documentation
Show all versions of pdf-test Show documentation
PDF Test: PDF testing library
The newest version!
package com.codeborne.pdftest;
import java.util.stream.Stream;
public class Spaces {
public static String reduce(String text) {
return text.replaceAll("[\\s\\n\\r\u00a0]+", " ").trim();
}
public static String[] reduce(String text, String... texts) {
return Stream.concat(Stream.of(text), Stream.of(texts))
.map(Spaces::reduce)
.toArray(String[]::new);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy