Below is an example XML.
<p>
Thisisgood
</p>
<p>
Thisisbad
</p>
<p>
This
<br>
is
<br>
acceptable
</p>
<p>
Thisisfine
</p>
I want the result:
Thisisgood
Thisisbad
Thisisacceptable
Thisisfine
I use Xpath //p/text()
in Google Doc (=importXML). This results in:
Thisisgood
Thisisbad
This is acceptable (appearing in different cells)
Thisisfine
What XPath would give me the result I need? Thank you.
You cannot solve this problem using XPath 1.0. Using XPath 2.0, you'd just do a
but this is not supported by Google Spreadsheet.
I'm pretty sure you can use
ARRAYFUNCTION
andJOIN
in Google Spreadsheet, but cannot help you with this. Better ask a new question with appropriate tags for Google Spreadsheets so people following that tag get notified, and provide an example Spreadsheet using theImportXML
function so people can work with it.