You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Il y a trois parties, avec `pattern:\s*` entre elles :
13
12
1.`pattern:-?\d+(\.\d+)?` - le premier nombre,
14
-
1.`pattern:[-+*/]` - l'opérateur,
15
-
1.`pattern:-?\d+(\.\d+)?` - le deuxième nombre.
16
-
=======
17
-
It has 3 parts, with `pattern:\s*` between them:
18
-
1.`pattern:-?\d+(\.\d+)?` - the first number,
19
-
2.`pattern:[-+*/]` - the operator,
20
-
3.`pattern:-?\d+(\.\d+)?` - the second number.
21
-
>>>>>>> bf7d8bb1af3b416d393af1c15b03cb1352da1f9c
13
+
2.`pattern:[-+*/]` - l'opérateur,
14
+
3.`pattern:-?\d+(\.\d+)?` - le deuxième nombre.
22
15
23
16
Pour faire de chacune de ces parties un élément distinct du tableau de correspondance, entourons-les de parenthèses : `pattern:(-?\d+(\.\d+)?)\s*([-+*/])\s*(-?\d+(\.\d+)?)`.
0 commit comments