Re: [xsl] How to select elements containing ARPT but not elements containing APPC_ARPT or ARPT_RMK?

Subject: Re: [xsl] How to select elements containing ARPT but not elements containing APPC_ARPT or ARPT_RMK?
From: "Gary Gapinski lists@xxxxxxxxxxxxxxxx" <xsl-list-service@xxxxxxxxxxxxxxxxxxxxxx>
Date: Sat, 22 Oct 2022 18:37:02 -0000
On 10/22/22 14:21, Roger L Costello costello@xxxxxxxxx wrote:
I want to output b& all rows whose affected_tables contain ARPT.

The precise XPath of that discriminator is //row[tokenize(affected_tables,';\s') = 'ARPT'].


But that is insensitive to the content of the column_header.

The precise XPath of the "desired output" is //row[column_header ne ''][tokenize(affected_tables,';\s') = 'ARPT'].

Current Thread