doumi9618 2013-02-14 06: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-14 07: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条)

报告相同问题?

悬赏问题

  • ¥15 在若依框架下实现人脸识别
  • ¥15 网络科学导论,网络控制
  • ¥100 安卓tv程序连接SQLSERVER2008问题
  • ¥15 利用Sentinel-2和Landsat8做一个水库的长时序NDVI的对比,为什么Snetinel-2计算的结果最小值特别小,而Lansat8就很平均
  • ¥15 metadata提取的PDF元数据,如何转换为一个Excel
  • ¥15 关于arduino编程toCharArray()函数的使用
  • ¥100 vc++混合CEF采用CLR方式编译报错
  • ¥15 coze 的插件输入飞书多维表格 app_token 后一直显示错误,如何解决?
  • ¥15 vite+vue3+plyr播放本地public文件夹下视频无法加载
  • ¥15 c#逐行读取txt文本,但是每一行里面数据之间空格数量不同