Regular expression IPv4 addresses cover the range 0.0.0.0 to 255.255.255.255
IPv4 アドレスにマッチする正規表現
步驟一:
備妥PDF轉換成TEXT環境套裝程式
依作業系統環境,選擇下載套裝程式
https://miktex.org/download
步驟二:
安裝執行basic-miktex
備妥PDF轉換純文字程式,PDFTOTEXT
步驟三:
下列為BATCH批次檔
rem 將PDF檔先轉換成暫存純文字檔案
pdftotext %1 txtTempPDF.txt
rem 將PDF轉換完成為TEXT文字檔後,經由grep工具取出IP資訊
grep -E '[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}' txtTempPDF.txt -o > Tipip.txt
rem 開啟經由grep篩選出之IP資訊
explorer Tipip.txt
參考資訊:
grep 過濾篩選指令
Windows環境,直接執行UnixLike指令
Utility programs (e.g. "grep") in the cygwin bash environment 相關執行檔案