gpt4 book ai didi

javascript - 删除字符串开头和结尾的方括号

转载 作者:数据小太阳 更新时间:2023-10-29 04:36:16 29 4
gpt4 key购买 nike

我想删除字符串开头和结尾的方括号(如果存在的话)。

[Just a string]
Just a string
Just a string [comment]
[Just a string [comment]]

应该导致

Just a string
Just a string
Just a string [comment]
Just a string [comment]

我试图构建一个正则表达式,但我没有以正确的方式得到它,因为它没有寻找位置:

string.replace(/[\[\]]+/g,'')

最佳答案

string.replace(/^\[(.+)\]$/,'$1')

应该可以解决问题。

  • ^ 匹配字符串的开头
  • $ 匹配字符串的结尾。
  • (.+) 匹配中间的所有内容,以在最终字符串中报告。

关于javascript - 删除字符串开头和结尾的方括号,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38352958/

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