作者:liangpengtao | 来源:互联网 | 2024-10-21 12:50
Iwanttoreplaceaportionofastringthatmatchesaregexpattern.我想替换匹配正则表达式模式的字符串的一部分。Ihav
I want to replace a portion of a string that matches a regex pattern.
我想替换匹配正则表达式模式的字符串的一部分。
I have the following regex pattern:
我有以下正则表达式模式:
(.+?)@test\.(.+?)
And this is a string replacement pattern:
这是一个字符串替换模式:
$1@hoge\.$2
How can I use them inside Swift code?
如何在Swift代码中使用它们?
1 个解决方案