如何使用 PCRE 库替换字符串中的子字符串?
例如:
(test)rrr(/test) -> (ll)rrr(/ll)
regexp: ( (test)(.*?)(test) )
for example:
(test)rrr(/test) -> (ll)rrr(/ll)
regexp: ( (test)(.*?)(test) )
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
Pcre 不提供现成的 c API 替代品。但 C++ 头文件提供了一个。
您可以使用 C++ 或使用此代码作为灵感。
您还可以使用 pcre 查看一些源代码(例如 Python 源代码或 Php)来实现此缺失的功能
Pcre does not provide a replace out of the shelf for the c API. but the C++ header provide one.
You can either use C++ or use this code as an inspiration.
You can also look at some source code using pcre such as the Python source code or Php to implements this missing feature