gpt4 book ai didi

regex - VBA正则表达式格式化字符串

转载 作者:行者123 更新时间:2023-12-04 22:04:19 25 4
gpt4 key购买 nike

关闭。这个问题需要更多 focused .它目前不接受答案。












想改进这个问题?更新问题,使其仅关注一个问题 editing this post .


7年前关闭。







Improve this question




我想删除字符串中的所有空格、括号(打开和关闭)、点和破折号,我尝试做一个正则表达式,但没有成功。
你能帮助我吗 ?

最佳答案

试试这个:
正则表达式:([\s\(\{\[\)\}\]\.\-]+)
Live Demo

我在 中使用php:

$re = "/([\\s\\(\\{\\[\\)\\}\\]\\.\\-]+)/m";
$str = "park fdgh{dg df} df \n";
$subst = "";

$result = preg_replace($re, $subst, $str);

关于regex - VBA正则表达式格式化字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27547626/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com