In XPath 2.0 you can yse the matches() function with a regular expression argument.
In XPath 1.0 use:
string-length(translate(., $vallWantedChars, '')) = 0
The above XPath expression is true only if the string-value of the current node dosn't contain any of the unwanted characters. You need to substitute $allunwantedChars with a string literal or expression containing exactly any of the wanted characters.
For example, it can be:
concat($vAlpha, '0123456789', '/-().,+<>? ', $vApos)
Here is illustration of this in XSLT (the solution is still entirely XPath 1.0, but the hosting language for the XPath processor in this case is XSLT 1.0):
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:variable name="vAlpha" select=
"'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz'"/>
<xsl:variable name="vApos">'</xsl:variable>
<xsl:template match="/">
<xsl:variable name="vallWantedChars" select=
"concat($vAlpha, '0123456789', '/-().,+<>? ', $vApos)"/>
<xsl:value-of select=
"string-length(translate(., $vallWantedChars, '')) = 0"/>
</xsl:template>
</xsl:stylesheet>
when this transformation is applied to the following XML document:
<t>123^abc</t>
the wanted, correct result is produced:
false