Re: Twitter hashtag RegEx help

2009-08-10 Thread Mahcsig
You could look for hash tags without an in front of it. something like this: (?:[^]|^)##([a-z0-9_\-]+) ~Mahcsig On Mon, Aug 10, 2009 at 10:24 AM, Paul Vernon paul.ver...@web-architect.co.uk wrote: Ok, so I thought I'd cracked this and I have to some extent but not completely. The well

RE: Twitter hashtag RegEx help

2009-08-10 Thread Paul Vernon
You could look for hash tags without an in front of it. something like this: (?:[^]|^)##([a-z0-9_\-]+) ~Mahcsig That was close, due to the needs of the code, I had to modify it a bit but you definitely put me on the right track. In the end, I arrived at this ([^]|^)##([a-z0-9_\-]+) as I