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
A two-digit hex number is `pattern:[0-9a-f]{2}` (assuming the flag`pattern:i` is set).
1
+
Un nombre hexadécimal a deux chiffres correspond `pattern:[0-9a-f]{2}` (avec le marqueur`pattern:i`).
2
2
3
-
We need that number `NN`, and then`:NN`repeated 5 times (more numbers);
3
+
Nous avons besoin de ce nombre `NN`, et ensuite`:NN`répété 5 fois (pour les autres nombres) ;
4
4
5
-
The regexp is: `pattern:[0-9a-f]{2}(:[0-9a-f]{2}){5}`
5
+
L'expression régulière est : `pattern:[0-9a-f]{2}(:[0-9a-f]{2}){5}`
6
6
7
-
Now let's show that the match should capture all the text: start at the beginning and end at the end. That's done by wrapping the pattern in`pattern:^...$`.
7
+
Montrons maintenant que la correspondance se fait bien sur l'ensemble du texte : commence au début et termine à la fin. Cela se fait en entourant le motif de`pattern:^...$`.
[MAC-address](https://en.wikipedia.org/wiki/MAC_address) of a network interface consists of 6 two-digit hex numbers separated by a colon.
3
+
L'[addresse MAC](https://fr.wikipedia.org/wiki/Adresse_MAC) d'une interface réseau est constitué de 6 paires de nombres hexadécimaux séparés par un double point.
4
4
5
-
For instance: `subject:'01:32:54:67:89:AB'`.
5
+
Par exemple : `subject:'01:32:54:67:89:AB'`.
6
6
7
-
Write a regexp that checks whether a string is MAC-address.
7
+
Écrire une regexp qui vérifie qu'une chaîne de caractères soit bien une adresse MAC.
0 commit comments