Looking to use a wildcard in an xpath where the attribute is a path and I want all paths that end with "text".
Example: <Property name="jcr:content/MainParsys/*/text"/>
jcr:content/MainParsys
is constant.*
is where I want the wildcard (all paths in-between).text
is the last part of the path I am looking for.
In addition, there are paths that end in /textIsRich
that I want to avoid.
Look for: <Property name="jcr:content/MainParsys/*/text"/>
Avoid: <Property name="jcr:content/MainParsys/*/text *"/>