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.
BBEdit で HTML を検索し、"myText" などのテキスト文字列を含むすべての段落タグに一致させたいと考えています。
この種のものは機能しますが、多くの場合、タグの終了 ">" を超えて一致します。
<p.*myText[^>]*>
私が理解しているように、これは開始山かっこ「p」、次に「myText」が見つかるまでの任意の数の文字、次に終了の「>」が見つかるまでの「>」ではない任意の数の文字と一致する必要があります。どうしたの?