doumi9618 2013-02-13 22:46
浏览 59
已采纳

php - 正则表达式用大括号和引号替换字符串

I see a lot of questions here regarding regex in general , but the problem is that they are usually (like mine) quite localized, and difficult to deduct if one is not a regex expert ..

My string involves characters like quotes and braces , which are quite known for making regex more difficult.

I would like to know the expression strings (search, replace) I need in order to perform this task.

in other words , in :

 ereg_replace (string pattern, string replacement, string subject) 

I will need the string pattern and string replacement expressions.

my string is

array('val' => 'something', 'label' => 'someword'),

I need to change the last part :

'label' => 'someword'),

to

'label' => __('someword','anotherstring')),

I will be using php for that , but I would also like to test it ( and also use in other cases) with Notepad ++ . ( I do not know if it actually changes something regarding the search and replace strings ).

Note that the string someword can also be SomeWord or SOMEWORD or even Some word or Some_Word on cases, meaning it can contain spaces, underscores or actually almost any character from within...)

Edit I : forgot to mantion that the __() part is of course wordpress textdomain function for translations . e.g. __('string','texdomain')

Edit II :

I am sorry if I come off too exigent or demanding in the comments , I really do try to UNDERSTAND and not only copy-paste a solution that might not work for me in other cases .. :-)

Edit III :

By the help of THIS tool , I understood that my basic misunderstanding is the possibility to use VARIABLES inside regex . The $1 is actually all I needed for better understanding .

the (incredibly simple) pattern that will work also in notepad++

Pattern: 'label' => ('.*')

Replace: 'label' => __(\1,'textdomain')

(In notepad++ it is called Tag Region (not var) and it is marked as \1

展开全部

  • 写回答

3条回答 默认 最新

  • duannan3959 2013-02-13 23:13
    关注

    If you will always be looking for the label key, you should be able to do something like this:

    $pattern = "/array\((.*), 'label' => '(.*)'/U";
    $added_string = 'anotherstring';
    $replacement = 'array($1, ' . "'label' => __('" . '$2' . "','$added_string'";
    $final_string = preg_replace($pattern, $replacement, $original_string);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(2条)
编辑
预览

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部