mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-23 17:41:41 +00:00
Tweak markdown to properly render html
This commit is contained in:
parent
aa7020998b
commit
edcfd31759
@ -19,7 +19,9 @@ cui il nome. Si tratta di una delle sintassi più diffuse per la scrittura di
|
||||
regex.
|
||||
|
||||
Esistono due tipi di metacaratteri (caratteri con una funzione speciale):
|
||||
|
||||
* Caratteri riconosciuti ovunque tranne che nelle parentesi quadre
|
||||
|
||||
```
|
||||
\ carattere di escape
|
||||
^ cerca all'inizio della stringa (o della riga, in modalità multiline)
|
||||
@ -36,16 +38,17 @@ Esistono due tipi di metacaratteri (caratteri con una funzione speciale):
|
||||
```
|
||||
|
||||
* Caratteri riconosciuti nelle parentesi quadre
|
||||
|
||||
```
|
||||
\ carattere di escape
|
||||
^ nega la classe se è il primo carattere
|
||||
- indica una serie di caratteri
|
||||
[ classe caratteri POSIX (se seguita dalla sintassi POSIX)
|
||||
] termina la classe caratteri
|
||||
|
||||
```
|
||||
|
||||
PCRE fornisce inoltre delle classi di caratteri predefinite:
|
||||
|
||||
```
|
||||
\d cifra decimale
|
||||
\D NON cifra decimale
|
||||
@ -62,9 +65,11 @@ PCRE fornisce inoltre delle classi di caratteri predefinite:
|
||||
## Esempi
|
||||
|
||||
Utilizzeremo la seguente stringa per i nostri test:
|
||||
|
||||
```
|
||||
66.249.64.13 - - [18/Sep/2004:11:07:48 +1000] "GET /robots.txt HTTP/1.0" 200 468 "-" "Googlebot/2.1"
|
||||
```
|
||||
|
||||
Si tratta di una riga di log del web server Apache.
|
||||
|
||||
| Regex | Risultato | Commento |
|
||||
|
@ -12,7 +12,9 @@ PCRE (Perl Compatible Regular Expressions) is a C library implementing regex. It
|
||||
|
||||
|
||||
There are two different sets of metacharacters:
|
||||
|
||||
* Those that are recognized anywhere in the pattern except within square brackets
|
||||
|
||||
```
|
||||
\ general escape character with several uses
|
||||
^ assert start of string (or line, in multiline mode)
|
||||
@ -44,6 +46,7 @@ There are two different sets of metacharacters:
|
||||
```
|
||||
|
||||
PCRE provides some generic character types, also called as character classes.
|
||||
|
||||
```
|
||||
\d any decimal digit
|
||||
\D any character that is not a decimal digit
|
||||
@ -59,7 +62,13 @@ PCRE provides some generic character types, also called as character classes.
|
||||
|
||||
## Examples
|
||||
|
||||
We will test our examples on following string `66.249.64.13 - - [18/Sep/2004:11:07:48 +1000] "GET /robots.txt HTTP/1.0" 200 468 "-" "Googlebot/2.1"`. It is a standard Apache access log.
|
||||
We will test our examples on the following string:
|
||||
|
||||
```
|
||||
66.249.64.13 - - [18/Sep/2004:11:07:48 +1000] "GET /robots.txt HTTP/1.0" 200 468 "-" "Googlebot/2.1"
|
||||
```
|
||||
|
||||
It is a standard Apache access log.
|
||||
|
||||
| Regex | Result | Comment |
|
||||
| :---- | :-------------- | :------ |
|
||||
|
@ -13,7 +13,9 @@ lang: zh-tw
|
||||
相容Perl正規表達式(Perl Compatible Regular Expressions, PCRE)是一個實作正規表達式的C語言函式庫。此函式庫在1997年被開發出來,在當時面對複雜字串處理時大多會選擇使用Perl。也因為如此,PCRE大多的正規表達式語法都很酷似Perl。PCRE語法被廣泛運用在許多大專案中,包括PHP、Apache、R等。
|
||||
|
||||
PCRE中的超字元(metacharacter)主要可以分為以下兩類:
|
||||
|
||||
* 在中括號外會被辨識的字元
|
||||
|
||||
```
|
||||
\ 通用跳脫字元
|
||||
^ 字串開頭 或 行首
|
||||
@ -35,16 +37,15 @@ PCRE中的超字元(metacharacter)主要可以分為以下兩類:
|
||||
* 在中括號內會被辨識的超字元,在中括號外會被視為字元集合使用
|
||||
|
||||
```
|
||||
|
||||
\ 通用跳脫字元
|
||||
^ 非字元集合的字,但只會抓到第一個符合的字元
|
||||
- 字元範圍
|
||||
[ POSIX字元集合(若後面接POSIX格式)
|
||||
] 字元集合定義結束
|
||||
|
||||
```
|
||||
|
||||
PCRE提供了一些通用的字元類型,可被當作字元集合使用
|
||||
|
||||
```
|
||||
\d 任何數字字元
|
||||
\D 任何非數字字元
|
||||
|
Loading…
Reference in New Issue
Block a user