test - Kurs HTML i CSS
- Obiekty daty - Date / Przekształcanie tekstu na datę - parse
...Date.parse("2000-01-01T24:01:00Z"); Date.parse("2000-01-01T24:00:01Z"); Date.parse("2000-1-1T0:0:0Z"); Date.parse("test"); Date.parse("");
- Obiekt wyrażenia regularnego - RegExp / Tworzenie nowej instancji wyrażenia regularnego - new RegExp
...wyrażenie regularne posiada flagę g - właściwość lastIndex jest automatycznie ustawiana przez funkcje: RegExp.prototype.exec i RegExp.prototype.test. Przykład var x = /(ab)c/gi; x.lastIndex; // 0 x.lastIndex = 3; x.lastIndex; // 3 x.exec("ABCd efg abc"); // ["abc", "ab"] x.lastIndex; // 12
- Operacje na wyrażeniach regularnych - RegExp.prototype / Dopasowanie wzorca - exec
...wzorca, które znajdują się w podanym tekście. Jeżeli chcesz tylko sprawdzić, czy określony tekst pasuje do wzorca, użyj funkcji RegExp.prototype.test. Przykład RegExp.prototype.exec var y = /abc/.exec("ABCd efg abc"); // ["abc"] y.index; // 9 y.input; // "ABCd efg abc" y = /(ab)c/.exec("ABCd efg abc"); // ["abc", "ab"] y.index; // 9 y = /abc/i.exec("ABCd efg abc")...