Hi everyone i have a pattern (using django)
[[u'13'], [u'12', u'23'], [u'30', u'31']]
and i want to spilt this and want to append into a list
like [13,12,23,30,31]
I know this can be done using regular expression but unable to make regualr expression for that.
Please help into this
Thanks in advance.