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.
大文字で始まるテキスト ノード内のすべての単語を取得しようとしています。
SelectNodes("//*[contains(text(), [A-Z])]");しかし、コンパイルしません。私は正規表現が初めてで、本当に何も見つかりません。どこを見ても。
SelectNodes("//*[contains(text(), [A-Z])]");
これを試して:
SelectNodes("//*[matches(text(), '^[A-Z]')]");
ただし、機能する前に、次の手順に従う必要がある場合があります。