Skip to content

Instantly share code, notes, and snippets.

@h4
Created March 27, 2012 13:38
Show Gist options
  • Save h4/2215939 to your computer and use it in GitHub Desktop.
Save h4/2215939 to your computer and use it in GitHub Desktop.
JS. Регярки
// 1. Поиск подстроки
var birthDate = /(\d+)\.(\d+)\.(\d+)/.exec("Я родился 21.05.1958");
document.write("Дата рождения: ", birthDate[0], " ");
document.write("День рождения: ", birthDate[1], " ");
document.write("Месяц рождения: ", birthDate[2], " ");
document.write("Год рождения: ", birthDate[3], " ");
// 2. Модификаторы
var str="The rain in SPAIN stays mainly in the plain";
var patt=/ain/gi;
document.write(str.match(patt));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment