Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Fiddler が次の URL の自動応答を照合して、URL の途中にある任意のワイルドカード値と照合する方法はありますか?
http://test.localhost.com/accounts/ {ワイルドカード}/notes/page/1
おそらく正規表現を使用したいと思うでしょう:
REGEX:http://test\.localhost\.com/accounts/.*/notes/page/1
または多分
REGEX:http://test\.localhost\.com/accounts/.+/notes/page/1
ワイルドカードが 1 文字以上である必要がある場合。
注:質問のタイトルには「クエリパラメーター」が記載されていますが?、サンプルには含まれていないため、質問のテキストはURLの「パス」コンポーネントに関係しているようです。
?