How can I wrap a string in parantheses that has another random value in it? Look at this for explaining better to understand:
var str = "ss(X)+ss(X)"
INTO:
"(ss(X))+(ss(X))"
NOTE: X can be any value like: "223" or "abc" "2+2+2"
|
How can I wrap a string in parantheses that has another random value in it? Look at this for explaining better to understand:
INTO:
NOTE: X can be any value like: "223" or "abc" "2+2+2" |
||||
|
You can try this:
A live demo at jsFiddle EDIT Since you've changed the conditions, the task can't be done by Regular Expressions. I've put an example, how you can do this, at jsFiddle. As a side effect, this snippet also detects possible odd brackets.
Just as a sidenote: If there's a random string within parentheses, like |
|||||||||||
|
|
If the string is random data, then this would be impossible, since you don't know what you actually want wrapped. Step 1: find out the condition for "this should be wrapped" versus "this should not be wrapped". We can then do a simple replacement:
This does a regexp replace, but instead of replacing a string with a string, it replaces a string with the output of a function run on that string. (note that the 'g' is crucial, because it makes the replace apply to all matches in your string, instead of stopping after running one replacement) |
|||||||||||
|
|
I think your going to need to do some string interpolation. Then you can set up some |
|||
|
|
+sign? – Fabrício Matté Feb 23 at 16:08