0

いくつかのログを解析したいのですが、少し難しいです。ログは次のようになります。

/ajax/foto.php?whatever-session-info-here
/edit.php?path=blahblah-imgage-url.jpg
/catalog/whetaever-text-here
/item/whetaever-text-here
/gallery (without slash at the end)

そう

/[a-zA-Z-]{0,}/

スラッシュ間のテキストに適しています。

/catalog/
/item/

正規表現作業の後

問題は、次のようなこの例の出力を取得する方法です。

/ajax/foto.php
/edit.php
/catalog/
/item/
/gallery

追加: これを見つけました。最初の 2 つのスラッシュの間のテキストのみが必要です:

/foto/300/b/5/4/19123312.jpg

/写真/を入手する

4

2 に答える 2

0

/[a-zA-Z] (/?)([a-zA-Z] .[a-zA-Z]*)?

テスト済み

http://gskinner.com/RegExr/

于 2013-01-31T07:28:47.310 に答える