How do I get rid of a variable within square brackets, including the brackets themselves? E.g. [152] or [153] or [154]. I am using Yahoo Pipes.

link|improve this question

75% accept rate
feedback

3 Answers

up vote 1 down vote accepted

You can escape the brackets (like any other character with a special meaning) with \.

s/\[\d+\]/Replacement/

In Yahoo Pipes it should work like: replace \[.+\] with (leave blank). Maybe you have to check the g flag.

link|improve this answer
Yep: [.+] worked a treat. – demonboy Apr 12 '11 at 7:36
feedback

I am unsure if the variables will always be numbers my solutions works by removing all occurrences of [anything]

replace

\[[^\]]*\] with ""

javascript example

var s = "[152] xxx [153]zzz [154] i";

s = s.replace(/\[[^\]]*\]/g,'') 

s ; //# =>  xxx zzz  i
link|improve this answer
feedback

try

var rx= '/[\[\.*\]]/g';    
var s = "[152]  [153] [154] ";
s.replace(rx,'');

DEMO

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.