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.
次の行を持つテーブルがあるとします。
... <tr> <th title="Library of Quintessential Memes">LQM:</th> </tr> <tr> <th title="Library of Boring Books">LBB:</th> </tr> ...
最初の子のテキストが「L」で始まるすべての<tr>要素を選択したいと思います。<th>XPathセレクターを使用してこれを行うにはどうすればよいですか?
<tr>
<th>
starts-with次の関数を使用します。
starts-with
//tr[starts-with(th[1],"L")]