com.github.lgermani.sentinel.utils.MyStringUtils Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sentinel Show documentation
Show all versions of sentinel Show documentation
This is a Functional testing framework
package com.github.lgermani.sentinel.utils;
public class MyStringUtils {
public static String removeAllSpecialCharacters(String myString){
return myString.replaceAll("[^a-zA-Z0-9]", "");
}
}