Jan 22, 2006 #1 Fendal Technical User Sep 13, 2005 178 GB Hi, Could somebody tell me the regular expression for matching hex colour codes, Code: var string="blah #000000 test #FF0000 blah #eeff00"; I know that " \d{6} " is six digits but it's not always digits only.
Hi, Could somebody tell me the regular expression for matching hex colour codes, Code: var string="blah #000000 test #FF0000 blah #eeff00"; I know that " \d{6} " is six digits but it's not always digits only.
Jan 22, 2006 Thread starter #2 Fendal Technical User Sep 13, 2005 178 GB currently using " /\#\S{6}/g; ", but there must be a better way. Upvote 0 Downvote
Jan 22, 2006 1 #3 Tarwn Programmer Mar 20, 2001 5,787 US How about: Code: \#[0-9A-F]{6} Course that doesn't cover three character color codes... Upvote 0 Downvote
Jan 22, 2006 1 #4 tsdragon Programmer Dec 18, 2000 5,133 US Don't forget ignorecase, or #abcdef won't work. Tracy Dryden Meddle not in the affairs of dragons, For you are crunchy, and good with mustard. Upvote 0 Downvote
Don't forget ignorecase, or #abcdef won't work. Tracy Dryden Meddle not in the affairs of dragons, For you are crunchy, and good with mustard.
Jan 23, 2006 Thread starter #5 Fendal Technical User Sep 13, 2005 178 GB yeah, that looks good, thanks. Upvote 0 Downvote