我不知道我做错了什么。我有这个要替换的字符串
<?xml version="1.0" encoding="utf-8" ?>
<Sections>
<Section>
我正在使用正则表达式替换包括 在内的所有内容<Section>
,其余部分保持不变。
arrayValues[index].replace("/[([.,\n,\s])*<Section>]/", "---");
我的正则表达式有什么问题?这不意味着替换每个字符,包括换行符和空格,直到并包括<Section>
with ---
?