Skip to content

Instantly share code, notes, and snippets.

@bizikov
Created July 31, 2014 05:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bizikov/9f596d2c79d611540bab to your computer and use it in GitHub Desktop.
Save bizikov/9f596d2c79d611540bab to your computer and use it in GitHub Desktop.
Убрать все пробелы в строке
// Удаляем все пробелы, используя
// регулярные выражения в JavaScript (RegEx):
var text3 = " a b c d e f g ";
var newText3 = text3.replace(/\s+/g, '');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment