Skip to content Skip to sidebar Skip to footer

Split String By Top-most Level Parentheses

I have a string like the following: '(1) (2 (3))' I want to regex it to get the following array: ['1', '2 (3)'] another example: '(asd (dfg))(asd (bdfg asdf))(asd)' -> ['asd (df

Solution 1:

I don't see a way to resolve it with regex, here's a programmatic approach (although there are probably a lot more elegant ways to approach this issue ... particularly as it is very fragile, it relies on the parentheses to always be applied in the correct order).

var string = "(asd (dfg))(asd (bdfg asdf))(asd)".split(''),
    result = [],
    fragment = '',
    countOpen = 0,
    countClosed = 0;
    
    
string.forEach(function (character) {
    fragment += character;
    
    if (character === '(') {
        countOpen += 1;
    }
    
    if (character === ')') {
        countClosed += 1;
    
        if (countOpen === countClosed) {
            result.push(fragment.slice(1, -1));
            fragment = '';
        }
    }
});

console.log(result);

Post a Comment for "Split String By Top-most Level Parentheses"