I want to check whether a string contains # or not.
Then if it contains #, I want to find the content after #.
For example,
test#1— This should return me1.test*1— This should not return anything.test#123Test— This should return123Test.
Please let me know. Thanx in advance.
regexbut is there any reason why you want to use regular expressions for this? – Jon Skeet Aug 3 '11 at 11:26