Does Nokogiri only support XPath 1.0? I am trying to do a simple replacement of the lines in a value cell, for example (where element contains something like "* My line (useless text)")
<xsl:value-of select="replace(element,'^\*\ (.+)\ \(.*\)$','\\1')">
Is it a poorly formed XSL? Or is there a limitation with Nokogiri?
xpath xslt nokogiri
JP.
source share