简体   繁体   中英

Simple regex replace brackets

Is there an easy way to make this string:

(53.5595313, 10.009969899999987)

to this String

[53.5595313, 10.009969899999987]

with JavaScript or jQuery?

I tried with multiple replace which seems not so elegant to me

 str = str.replace("(","[").replace(")","]")

Well, since you asked for regex:

var input = "(53.5595313, 10.009969899999987)";
var output = input.replace(/^\((.+)\)$/,"[$1]");

// OR to replace all parens, not just one at start and end:
var output = input.replace(/\(/g,"[").replace(/\)/g,"]");

...but that's kind of complicated. You could just use .slice() :

var output = "[" + input.slice(1,-1) + "]";
var s ="(53.5595313, 10.009969899999987)";
s.replace(/\((.*)\)/, "[$1]")

For what it's worth, to replace both ( and ) use:

str = "(boob)";
str = str.replace(/[\(\)]/g, ""); // yields "boob"

regex character meanings:

[  = start a group of characters to look for
\( = escape the opening parenthesis
\) = escape the closing parenthesis
]  = close the group
g  = global (replace all that are found)

这个Javascript应该完成这项工作以及上面'nnnnnn'的答案

stringObject = stringObject.replace('(', '[').replace(')', ']')

If you need not only one bracket pair but several bracket replacements, you can use this regex:

var input = "(53.5, 10.009) more stuff then (12) then (abc, 234)";
var output = input.replace(/\((.+?)\)/g, "[$1]");
console.log(output);

[53.5, 10.009] more stuff then [12] then [abc, 234]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM