1

マーカー文字列/文字が一致するまで行を解析する方法。

例えば。

    <a href="/stamp/stamp.jsp?tp=&number=100001">
..
    <a href="/stamp/stamp.jsp?tp=&number=200001">
..
    <a href="/stamp/stamp.jsp?tp=&number=300001">

これらの文字列は、html ファイルのどの部分でも発生する可能性があります。私の質問は次のようになります。

私の開始マーカーは "/stamp/stamp.jsp?tp=&number=" で、終了マーカーは " " です。これらの 6 桁の変数をテキスト ファイルに保存する必要があります。

どんな解決策でも大歓迎です。

ありがとうございます。

4

1 に答える 1

0

これは RegExp を使えば簡単です:

dim f
dim r
dim item
dim rMatches

' .. .-> read the content of the file into f

set r =  new regexp

r.pattern = "\/stamp\/stamp.jsp\?tp=&number=(\d+)\"""
r.global = true
set rMatches = r.execute(f)

for each item in rMatches
    msgbox item.submatches(0)
next
于 2013-05-04T15:07:55.600 に答える