renovations

This commit is contained in:
Ilya Kantor 2015-04-07 00:42:12 +03:00
parent 0d6ca23fb7
commit 59388d093e
37 changed files with 269 additions and 160 deletions

View file

@ -13,7 +13,7 @@
```js
//+ run
var re = /"(\\.|[^"\\])*"/g;
var str = '.. "test me" .. "Скажи \\"Привет\\"!" .. "\\r\\n" ..';
var str = '.. "test me" .. "Скажи \\"Привет\\"!" .. "\\r\\n\\\\" ..';
alert( str.match(re) ); // "test me","Скажи \"Привет\"!","\r\n"
alert( str.match(re) ); // "test me","Скажи \"Привет\"!","\r\n\\"
```