First of all I'm a toddler when it comes to regular expressions.
I need to match nested characters with their meanings stored in an array.
It's like a symbol-to-text translator.
For example, given this string
{(((x)))}
I need to translate it into this using either Regexp or oldschool for loops
Inside curly braces, inside three parenthesis, one x mark, closed by three parenthesis, closed by curly braces
Problem is I need to parse many nested characters including unicode symbols, and I want to know if there is a best practice using regular expressions.
Further examples:
The input string will always be a palindrome.
{(#x#)}
{{{{*}}}}
<<<x>>>
will be translated into their definitions from a static Array
String[][] openers = { {"{","curly"} , {"(","parenthesis" }, {"<","inequality"} };
String[][] insiders = { {"x","x mark"}, {"#","pound"}, {"*","star"} };
into these
curly parenthesis pound x mark pound parenthesis curly
four curly star four curly
three inequality x mark three inequality
This will be done in Java by the way.
Any help would be appreciated. Thanks.