SyntaxFix
Write A Post
Hire A Developer
Questions
String before = EMPTY_SPACE+TAB+"word"+TAB+EMPTY_SPACE
Where EMPTY_SPACE = " " (this is String) TAB = '\t' (this is Character)
String after = before.replaceAll(" ", "").replace('\t', '\0') means after = "word"