Skip to content

Latest commit

 

History

History
15 lines (13 loc) · 367 Bytes

spaces-to-tabs.md

File metadata and controls

15 lines (13 loc) · 367 Bytes
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