Extract large number from text

From LemonWiki共筆
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

使用正規表示法 (Regular expression) ,從文章內容中擷取長數字

輸入資料: 使用括弧符號 ( ) 或 ( ),框住長數字

(1)aaaa(12345)
(2)bbb(1234567)
(3)ccc(123456789)

預期結果

12345
1234567
123456789

使用支援正規表示法的文字編輯器,例如 Sublime Text 。操作步驟

  1. 選單 File -> Replace
  2. 啟用 Regular expression
  3. Find What: .*[\(|(](\d\d+)[\)|)].*
  4. Replace With: \1