This commit is contained in:
Ilya Kantor 2015-06-09 13:26:46 +03:00
parent cd23e7d953
commit bdb98d1ce9
5 changed files with 6 additions and 90 deletions

View file

@ -115,7 +115,7 @@ alert( "100 10 1".match(/\d0+/g) ); // 100, 10
В действии:
```js
//+ run
alert( "0 1 12.345 7890".match(/\d+\.\d+/g) ); // 123.45
alert( "0 1 12.345 7890".match(/\d+\.\d+/g) ); // 12.345
```
</dd>