title | description | author | tags |
---|---|---|---|
String To param-case |
Converts a string into param-case |
Mcbencrafter |
string,conversion,param-case |
public static String stringToParamCase(String text) {
return text.toLowerCase().replaceAll("\\s+", "-");
}
// Usage:
System.out.println(stringToParamCase("Hello World 123")); // "hello-world-123"