You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifing multiple xPath queries for a single field by separating them with a comma makes it so that xpath expressions that include a comma cannot be used.
An expression like this //datafield[@tag='035'][subfield[text()[contains(.,'(OCoLC)')]]][1] won't work because of the comma in the contains function
It is already possible to use xpath syntax to specify multiple xpath queries for a single field, like this //datafield[@tag='100' or @tag='110' or @tag='111']/subfield[@code='a' or @code='b']
The text was updated successfully, but these errors were encountered:
adamshire123
changed the title
delimiting multiple xpath expressions with a comma prevents breaks xpath expressions that include a comma.
delimiting multiple xpath expressions with a comma breaks xpath expressions that include a comma.
Aug 15, 2023
adamshire123
changed the title
delimiting multiple xpath expressions with a comma breaks xpath expressions that include a comma.
specifing multiple xPath queries for a single field by separating them with a comma breaks xpath expressions that include a comma.
Aug 15, 2023
AlmaPrimoDefinitiveCatalogAddon/Catalog.lua
Line 763 in 8aba00e
Specifing multiple xPath queries for a single field by separating them with a comma makes it so that xpath expressions that include a comma cannot be used.
An expression like this
//datafield[@tag='035'][subfield[text()[contains(.,'(OCoLC)')]]][1]
won't work because of the comma in thecontains
functionIt is already possible to use xpath syntax to specify multiple xpath queries for a single field, like this
//datafield[@tag='100' or @tag='110' or @tag='111']/subfield[@code='a' or @code='b']
The text was updated successfully, but these errors were encountered: