Skip to content

Commit adad5af

Browse files
committed
fix format
1 parent 46ecc87 commit adad5af

File tree

1 file changed

+1
-2
lines changed
  • 9-regular-expressions/14-regexp-lookahead-lookbehind/1-find-non-negative-integers

1 file changed

+1
-2
lines changed

9-regular-expressions/14-regexp-lookahead-lookbehind/1-find-non-negative-integers/task.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,10 @@ Il y a une chaîne de nombres entiers.
55
Créez une expression régulière qui ne recherche que les expressions non négatives (zéro est autorisé).
66

77
Un exemple d'utilisation :
8-
98
```js
109
let regexp = /your regexp/g;
1110

1211
let str = "0 12 -5 123 -18";
1312

14-
alert(str.match(regexp)); // 0, 12, 123
13+
alert( str.match(regexp) ); // 0, 12, 123
1514
```

0 commit comments

Comments
 (0)