1
0
mirror of https://github.com/adambard/learnxinyminutes-docs.git synced 2025-08-30 01:50:25 +02:00

Remove bare links

This commit is contained in:
Boris Verkhovskiy
2024-06-03 13:31:20 -06:00
parent 29bf4c1b9f
commit 790a78e3cf
61 changed files with 418 additions and 546 deletions

View File

@@ -72,13 +72,8 @@ PCRE提供了一些通用的字元類型可被當作字元集合使用
| ^\S+ | 66.249.64.13 | `^` 為行首, `\S+` 抓取至少一個非空白字元 |
| \+[0-9]+ | +1000 | `\+` 抓取 `+` 字元。 `[0-9]` 字元集表示剛好一個數字字元。 可以用 `\+\d+` 達到相同效果。 |
以上範例皆可在 https://regex101.com/ 測試,步驟如下:
以上範例皆可在 [regex101.com](https://regex101.com/) 測試,步驟如下:
1. 複製範例字串到 `TEST STRING` 區域
2. 複製正規表達式字串到 `Regular Expression` 區域
2. 複製正規表達式字串到 `Regular Expression` 區域
3. 網頁會顯示自動表達式抓取結果
## 更多資料