572 B
572 B
title, tags, expertise, author, cover, firstSeen, lastUpdated
| title | tags | expertise | author | cover | firstSeen | lastUpdated |
|---|---|---|---|---|---|---|
| Expand tabs into spaces | string,regexp | beginner | chalarangelo | blog_images/houses-rock-sea.jpg | 2020-06-01T17:05:39+03:00 | 2020-09-15T16:28:04+03:00 |
Convert tabs to spaces, where each tab corresponds to count spaces.
- Use
String.prototype.replace()with a regular expression andString.prototype.repeat()to replace each tab character withcountspaces.
const expandTabs = (str, count) => str.replace(/\t/g, ' '.repeat(count));
expandTabs('\t\tlorem', 3); // ' lorem'