Extract large number from text: Difference between revisions

Jump to navigation Jump to search
no edit summary
(Created page with "使用正規表示法 (Regular expression) ,從文章內容中擷取長數字 輸入資料: 使用括弧符號 ( 或 ( ,框住長數字 <pre> (1)aaaa(123456) (2...")
 
No edit summary
Line 1: Line 1:
使用正規表示法 ([[Regular expression]]) ,從文章內容中擷取長數字
使用正規表示法 ([[Regular expression]]) ,從文章內容中擷取長數字


輸入資料: 使用括弧符號 ( 或 ( ,框住長數字
輸入資料: 使用括弧符號 ( ) 或 ( ),框住長數字
<pre>
<pre>
(1)aaaa(123456)
(1)aaaa(12345)
(2)bbb(1234567)
(2)bbb(1234567)
(3)ccc(123456789)
(3)ccc(123456789)
Line 10: Line 10:
預期結果
預期結果
<pre>
<pre>
123456
12345
1234567
1234567
123456789
123456789

Navigation menu