I have a text like this :
string text = "Lorem ipsum dolor sit [1] amet, [3] consectetuer adipiscing  [5/4/9] elit  
Ut odio. Nam sed est. Nam a risus et est[55/12/33/4] iaculis";
I want to get a list of string with all [digit] or all [digit/digit/...] present in my text.
For example:
{"[1]","[3]","[5/4/9]","[55/12/33/4]"} 
for the text above.
How can I do that with regex?
