如何从在 libxslt 中工作的 EXSLT 获取正则表达式?
有人让 Regexp
在 libxslt 中工作吗?什么时候可以,怎么样?
http://www.exslt.org/regexp/index.html
使用命令 xsltproc - -dumpextensions
与最新的 libxslt 我没有得到任何正则表达式支持:-(
Has anyone got Regexp
working in libxslt? When yes, how?
http://www.exslt.org/regexp/index.html
When using the command xsltproc --dumpextensions
with the latest libxslt I'm not getting any Regexp support :-(
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
xsltproc 现在已经包含了 {http://exslt.org/strings}replace。将一些前缀绑定到该名称空间,例如 string,然后调用 string:replace()。
您可以使用 shell 命令获取编译到 xsltproc 程序中的扩展列表:
我认为,如果您的 libxsltproc 来自同一版本,那么它应该具有相同的扩展名。
xsltproc includes {http://exslt.org/strings}replace already these days. Bind some prefix to that namespace, e.g. string, and then call string:replace().
You can get the list of extensions compiled into the xsltproc program using the shell command:
If your libxsltproc is from the same build it should have the same extensions, I think.