Using System.Text.RegularExpressions with the following expression to match all tokens wrapped with # that contain only text (no whitespace etc)
#([a-zA-Z]+)#
and the following test string
text #test# text #test1# text
I only get one match. What am I doing wrong in my regex?