title | tags | author_title | author_url | author_image_url | description | image |
---|---|---|---|---|---|---|
expandTabs |
string,regexp,beginner |
Deepak Vishwakarma |
Implementation of "expandTabs" in typescript, javascript and deno. |
Convert tabs to spaces, where each tab corresponds to count
spaces.
Use String.prototype.replace()
with a regular expression and String.prototype.repeat()
to replace each tab character with count
spaces.
const expandTabs = (str, count) => str.replace(/\t/g, " ".repeat(count));
expandTabs("\t\tlorem", 3); // ' lorem'