如何使用 PCRE 库替换字符串中的子字符串?

发布于 2024-09-15 09:52:29 字数 102 浏览 3 评论 0原文

例如:

(test)rrr(/test) -> (ll)rrr(/ll)
regexp: ( (test)(.*?)(test) )

for example:

(test)rrr(/test) -> (ll)rrr(/ll)
regexp: ( (test)(.*?)(test) )

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

兮子 2024-09-22 09:52:29

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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文