4

我正在尝试用下划线替换字符串中的空格,以便使用 RegEx 创建 slug。当有一个空间时,它可以正常工作。但是当有两个连续的空格或一个空格后跟一个下划线(反之亦然' _' OR '_ ')时,它被替换为__。我该如何克服呢?那就是我想要一个下划线而不是 double 或 Triple。任何帮助,将不胜感激。

我的替换代码与此类似。

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

1 回答 1

10

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

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

这是规范吗?

于 2013-11-09T11:34:50.060 回答