"I expect five hundred dollars <Sample500>. and new brackets <600> next < Sample>".
in the above sentence i want to get the strings between "<" and ">" like ["Sample500","600"," Sample"]
for that i'm using the regular expression like -->
"I expect five hundred dollars <Sample500>. and new brackets <600> next <Sample>".match(/\<<[^>]+>\>/g)
please provide valid regular expression