I want to find the phone number from these websites with XPath.
I tried with
//*[starts-with(text(),’+49’)]
and other similar combinations but it doesn't work. Anyone who can give me some advice?
I want to find the phone number from these websites with XPath.
I tried with
//*[starts-with(text(),’+49’)]
and other similar combinations but it doesn't work. Anyone who can give me some advice?
This XPath,
//text()[starts-with(normalize-space(), '+49')]
will select all text nodes with a space-normalized string value that starts with '+49'
, as requested.