Files
30-seconds-of-code/snippets/js/s/expand-tabs.md
2023-05-10 22:35:09 +03:00

540 B

title, type, language, tags, author, cover, dateModified
title type language tags author cover dateModified
Expand tabs into spaces snippet javascript
string
regexp
chalarangelo naming-conventions 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 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'