我想删除字符串beetween []中的文本: 例如:
Hello everyone [hi hi], hello world [ha ha]
结果:
Hello everyone, hello world
我用
string.gsub!(regex-here , ' ')
帮我定义一个正则表达式 - 这里。
答案 0 :(得分:2)
据我所知,您不希望在结果中留下前导/尾随空格:
$config = Array(
'protocol' => 'sendmail',
'mailtype' => 'html',
'charset' => 'utf-8',
'wordwrap' => TRUE
);
$this->email->initialize($config);
答案 1 :(得分:1)