I am trying to get regex for:

  • Get "#" and all text between "#" and trail ending "\t"(whitespace).

So far I have:

/#[a-zA-Z0-9]\t/

This seems wrong? What can I do to fix it?

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

If by whitespace you mean actual whitespace (that is spaces, tabs, etc), then this does it:

/#\S+/

(\S is equivalent to [^\s])

If you however meant tabs, when you wrote whitespace, then this:

/#[^\t]+/
link|improve this answer
'\S' is for whitespaces? and whats the '+' do? I still need to get everything between the two is well. – Anicho Feb 3 at 16:26
No, \s is for whitespace, \S is for all but whitespace. And the + means one times or more. So, in short the regex says: "look for a # followed by one or more characters that is/are not whitespace/tabs (depending on the regex above)." And obviously it will stop collecting once it encounters a character that does not match the criteria (criteria here: not a whitespace/tab character). – Regexident Feb 3 at 16:28
I <3 you! thanks @Regexident – Anicho Feb 3 at 16:45
@Anicho: You're welcome. :) – Regexident Feb 3 at 16:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.