美文网首页
XCode 利用正则表达式查找替换字符

XCode 利用正则表达式查找替换字符

作者: mydisc1 | 来源:发表于2018-05-07 16:04 被阅读0次

    参考如下链接:

    我要替换的是

    查找

    [UIImage imageNamed:@"age_0_2_normal"]

    替换为:

    [UIImage imageNamed:@"age_0_2_normal" inBundle:YYGameResourceBundle compatibleWithTraitCollection:nil]

    查找的正则表达式:

    \[UIImage imageNamed:@\"(.*)\"\]

    替换的正则表达式:

    \[UIImage imageNamed:@\"$1\" inBundle:YYGameResourceBundle compatibleWithTraitCollection:nil\]

    说明一下:.* 为查找的匹配

    替换表达式中的 $1 代表 .*

    https://www.jianshu.com/p/1e43741601ff

    相关文章

      网友评论

          本文标题:XCode 利用正则表达式查找替换字符

          本文链接:https://www.haomeiwen.com/subject/cuhvrftx.html