Title | description | author | tags |
---|---|---|---|
Spaces To Tabs |
Converts spaces into tabs |
Mcbencrafter |
string,tab,space,conversion |
public static String convertSpacesToTab(String text, int spacesPerTab) {
return text.replaceAll(" ".repeat(spacesPerTab), "\t");
}
// Usage:
System.out.println(convertSpacesToTab("hello world", 4)); // Output: hello\tworld