美文网首页
Xcode之正则表达式搜索替换提取所需字符串

Xcode之正则表达式搜索替换提取所需字符串

作者: willokyes | 来源:发表于2018-11-14 20:51 被阅读0次

在Xcode编辑器中 command + F 组合键打开搜索替换框:
(RGBA为项目中自定义的宏)

search:
\[UIColor colorWithRed:(\d+)/255\.0 green:.(\d+)/255.0 blue:(\d+)/255\.0 alpha:(\d+)\]

replace:
RGBA($1, $2, $3, $4)


    //
    _shopNameLabel = [[UILabel alloc] init];
    _shopNameLabel.font = [UIFont fontWithName:@"PingFang-SC-Medium" size:16];
    _shopNameLabel.textColor = [UIColor colorWithRed:49/255.0 green:49/255.0 blue:49/255.0 alpha:1];
    [_backView addSubview:_shopNameLabel];
    
    //
    _shopDesciptionLabel = [[UILabel alloc] init];
    _shopDesciptionLabel.font = [UIFont fontWithName:@"PingFang-SC-Medium" size:13];
    _shopDesciptionLabel.textColor = [UIColor colorWithRed:49/255.0 green:49/255.0 blue:49/255.0 alpha:1];
    [_backView addSubview:_shopDesciptionLabel];



    //
    _shopNameLabel = [[UILabel alloc] init];
    _shopNameLabel.font = [UIFont fontWithName:@"PingFang-SC-Medium" size:16];
    _shopNameLabel.textColor = [UIColor colorWithRed:49/255.0 green:49/255.0 blue:49/255.0 alpha:1];
    [_backView addSubview:_shopNameLabel];
    
    //
    _shopDesciptionLabel = [[UILabel alloc] init];
    _shopDesciptionLabel.font = [UIFont fontWithName:@"PingFang-SC-Medium" size:13];
    _shopDesciptionLabel.textColor = [UIColor colorWithRed:49/255.0 green:49/255.0 blue:49/255.0 alpha:1];
    [_backView addSubview:_shopDesciptionLabel];

相关文章

  • Xcode之正则表达式搜索替换提取所需字符串

    在Xcode编辑器中 command + F 组合键打开搜索替换框:(RGBA为项目中自定义的宏)

  • 【python基础】9-文本处理

    字符串方法 正则表达式 模式匹配和提取 搜索和替换 编译正则表达式 正则表达式进一步阅读 字符串方法 转换字符st...

  • 正则表达式

    导语 正则表达式的作用: 测试字符串内的模式 替换文本 基于模式匹配从字符串中提取子字符串 语法 正则表达式的各组...

  • 正则表达式(W3C笔记)

    通过使用正则表达式,可以: 测试字符串中的模式 替换文本 基于模式匹配从字符串中提取子字符串 正则表达式的应用领域...

  • iOS Swift 国际化

    查找到项目中的中文字符串并替换成对象的国际化函数调用( 使用Xcode 强大的 正则表达式) 在搜索条件里输入(...

  • iOS 快速国际化

    第一步、xcode用正则方法替换字符串Replace匹配模式Regular Expression正则表达式 @"...

  • 正则个人笔记(熟读)

    正则表达式可以实现对字符串的匹配,替换和字符提取。 var reg = new RegExp("表达式"); ...

  • Java—正则表达式(Pattern类和Matcher类)

    正则表达式介绍   正则表达式可以用于对字符串的处理,相当于是一个匹配字符串的模板。主要包含查找、替换、分割、提取...

  • RegExp

    正则表达式 regular express 搜索、替换、校验字符串的一种规则 1.正则表达式创建方式 a. 字面量...

  • 【2017-08-29】字符串及文本的处理(四)

    字符串搜索与合并 正则表达式中使用Unicode问题:提取一段文本中的所有中文使用re模块中的正则表达式进行搜索与...

网友评论

      本文标题:Xcode之正则表达式搜索替换提取所需字符串

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