I am currently facing an issue that i have json string which have some properties lets say
[
{"ircEvent": "PRIVMSG", "method": "newURI", "regex": "^http://.*"},
{"ircEvent": "PRIVMSG", "method": "deleteURI", "regex": "^delete.*"},
{"ircEvent": "PRIVMSG", "method": "randomURI", "regex": "^random.*"}
]
Now I have to convert this value into some object through which I can iterate and pass it to my business logic.
How can I achieve that?