How to identify a given string is hex color format

前端 未结 7 2391
走了就别回头了
走了就别回头了 2020-12-07 15:27

I\'m looking for a regular expression to validate hex colors in ASP.NET C# and
am also looking code for validation on server side.

For instance: #CCCCCC

7条回答
  •  一生所求
    2020-12-07 15:59

    all answers mentioned RGB format, here is regex for ARGB format:

    ^#[0-9a-fA-F]{8}$|#[0-9a-fA-F]{6}$|#[0-9a-fA-F]{4}$|#[0-9a-fA-F]{3}$
    

提交回复
热议问题