热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

在swift中用正则表达式替换字符串-Replacestringwithregexinswift

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 个解决方案

#1


7  

In Swift, you can use stringByReplacingMatchesInString for a regex-based replace.

在Swift中,您可以使用stringByReplacingMatchesInString进行基于正则表达式的替换。

Here is a snippet showing how to use it:

以下是显示如何使用它的代码段:

let txt = "myname@test.com"
let regex = NSRegularExpression(pattern: "([^@\\s]+)@test\\.(\\w+)", options:nil, error: nil)
let newString = regex!.stringByReplacingMatchesInString(txt, options: nil, range: NSMakeRange(0, count(txt)), withTemplate: "$1@hoge.$2")
println(newString)

Note that I changed the regex to

请注意,我将正则表达式更改为

  • ([^@\\s]+) - matches 1 or more characters other than @ or whitespace
  • ([^ @ \\ s] +) - 匹配@或空格以外的1个或多个字符

  • @ - matches @ literally
  • @ - 匹配@字面意思

  • test\\.(\\w+) - matches test. literally and then 1 or more alphanumeric character (\w+).
  • test \\。(\\ w +) - 匹配测试。字面上然后是1个或多个字母数字字符(\ w +)。

Note that in the replacement string, you do not need to escape the period.

请注意,在替换字符串中,您无需转义句点。


推荐阅读
author-avatar
liangpengtao
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有