最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - Remove square brackets from string - Stack Overflow

programmeradmin1浏览0评论

I want to process some text to remove any substrings in square brackets, e.g. converting this:

We noted that you failed to attend your [appointment] last appointment . Our objective is to provide the best service we can for our patients but [we] need patients’ co-operation to do this. Wasting appointments impedes our ability to see all the patients who need consultations. [If] you need to cancel an appointment again we would be grateful if you could notify reception in good [time].

To this:

We noted that you failed to attend your last appointment . Our objective is to provide the best service we can for our patients but need patients’ co-operation to do this.Wasting appointments impedes our ability to see all the patients who need consultations.you need to cancel an appointment again we would be grateful if you could notify reception in good.

How can I achieve this?

I want to process some text to remove any substrings in square brackets, e.g. converting this:

We noted that you failed to attend your [appointment] last appointment . Our objective is to provide the best service we can for our patients but [we] need patients’ co-operation to do this. Wasting appointments impedes our ability to see all the patients who need consultations. [If] you need to cancel an appointment again we would be grateful if you could notify reception in good [time].

To this:

We noted that you failed to attend your last appointment . Our objective is to provide the best service we can for our patients but need patients’ co-operation to do this.Wasting appointments impedes our ability to see all the patients who need consultations.you need to cancel an appointment again we would be grateful if you could notify reception in good.

How can I achieve this?

Share Improve this question edited Apr 28, 2018 at 18:01 Hermann Döppes 1,3731 gold badge18 silver badges26 bronze badges asked Oct 3, 2013 at 8:11 ankurankur 4,1814 gold badges17 silver badges7 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 3

Use this regex....

var strWithoutSquareBracket = strWithSquareBracket.replace(/\[.*?\]/g,'');

The regex here first matches [ and then any character until a ] and replaces it with ''

Here is a demo

Check this, it will help you:

var strWithoutSquareBracket = "Text [text]".replace(/\[.*?\]/g, '');

alert(strWithoutSquareBracket);

Fiddle Here

Let's say text is the variable name that holds your text. From your example, it seems you want to remove all text between square brackets (along with said brackets), so you'll have to write this:

text = text.replace(/\[.+?\]/g, '');

The \[ matches the 1st bracket; then .+? matches any characters until the closing bracket (matched by \]). The g in the end tells replace to apply the regex to all the text.

发布评论

评论列表(0)

  1. 暂无评论