Created
March 27, 2012 13:38
-
-
Save h4/2215939 to your computer and use it in GitHub Desktop.
JS. Регярки
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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