Strings.java Source code

Java tutorial

Introduction

Here is the source code for Strings.java

Source

public class Strings {
    public static String reduceToAlphaNumerics(String value) {
        return value.replaceAll("[^0-9a-zA-Z]+", " ");
    }

}