gpt4 book ai didi

regex - Coldfusion 字符串替换为 ReReplace

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

我正在尝试用下划线替换字符串中的空格,以便使用 RegEx 创建 slug。当有一个空间时,它工作正常。但是当有两个连续的空格或一个空格后跟一个下划线时,反之亦然( ' _' OR '_ ' )它被替换为 __ .我怎样才能克服这个问题?即 我想要一个下划线而不是双下划线或三重 .任何帮助,将不胜感激。

我的替换代码与此类似。

rereplace(lCase('this is a sample _string'),'[ ]','_','all')

最佳答案

根据您修改后的要求,这似乎可以解决问题:

original = "string with_mix _ of  spaces__and_ _underscores__  __to_ _test  with";
updated = reReplace(original, "[ _]+", "_", "all");
writeOutput(updated);

结果是:
string_with_mix_of_spaces_and_underscores_to_test_with

这是规范吗?

关于regex - Coldfusion 字符串替换为 ReReplace,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19873110/

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