Skip to content

Commit a2d5a02

Browse files
committed
Conflict fixed on "Strings" page in french language
1 parent b157f04 commit a2d5a02

File tree

1 file changed

+1
-15
lines changed

1 file changed

+1
-15
lines changed

1-js/05-data-types/03-string/article.md

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -79,31 +79,17 @@ Il existe d'autres caractères "spéciaux" moins courants.
7979

8080
Voici la liste complète :
8181

82-
<<<<<<< HEAD
8382
| Caractère | Description |
8483
|----------------------------------------------------|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
8584
| `\n` | Nouvelle ligne |
86-
| `\r` | Retour chariot: non utilisé seul. Les fichiers texte Windows utilisent une combinaison de deux caractères `\r\n` pour représenter un saut de ligne. |
85+
| `\r` | Dans les fichiers texte Windows, une combinaison de deux caractères `\r\n` représente une nouvelle pause, tandis que sur un système d'exploitation non Windows, il s'agit simplement de `\n`. C'est pour des raisons historiques, la plupart des logiciels Windows comprennent également `\n`. |
8786
| `\'`, `\"` | Quotes |
8887
| `\\` | Backslash |
8988
| `\t` | Tab |
9089
| `\b`, `\f`, `\v` | Backspace, Form Feed, Vertical Tab -- conservés pour compatibilité, non utilisés de nos jours. |
9190
| `\xXX` | Caractère Unicode avec l'unicode hexadécimal donné `XX`, par exemple `'\x7A'` est le même que `'z'`. |
9291
| `\uXXXX` | Un symbole Unicode avec le code hexadécimal `XXXX` en encodage UTF-16, par exemple `\u00A9` -- est un unicode pour le symbole de copyright `©`. Ce doit être exactement 4 chiffres hexadécimaux. |
9392
| `\u{X…XXXXXX}` (de 1 à 6 caractères hexadécimaux ) | Un symbole Unicode avec l'encodage UTF-32. Certains caractères rares sont encodés avec deux symboles Unicode, prenant 4 octets. De cette façon, nous pouvons insérer des codes longs. |
94-
=======
95-
| Character | Description |
96-
|-----------|-------------|
97-
|`\n`|New line|
98-
|`\r`|In Windows text files a combination of two characters `\r\n` represents a new break, while on non-Windows OS it's just `\n`. That's for historical reasons, most Windows software also understands `\n`. |
99-
|`\'`, `\"`|Quotes|
100-
|`\\`|Backslash|
101-
|`\t`|Tab|
102-
|`\b`, `\f`, `\v`| Backspace, Form Feed, Vertical Tab -- kept for compatibility, not used nowadays. |
103-
|`\xXX`|Unicode character with the given hexadecimal Unicode `XX`, e.g. `'\x7A'` is the same as `'z'`.|
104-
|`\uXXXX`|A Unicode symbol with the hex code `XXXX` in UTF-16 encoding, for instance `\u00A9` -- is a Unicode for the copyright symbol `©`. It must be exactly 4 hex digits. |
105-
|`\u{X…XXXXXX}` (1 to 6 hex characters)|A Unicode symbol with the given UTF-32 encoding. Some rare characters are encoded with two Unicode symbols, taking 4 bytes. This way we can insert long codes. |
106-
>>>>>>> 4541b7af7584014a676da731f6e8774da5e059f6
10793

10894
Exemples avec unicode :
10995

0 commit comments

Comments
 (0)