Regular expression for a hexadecimal number?

后端 未结 11 1588
旧巷少年郎
旧巷少年郎 2020-11-29 02:56

How do I create a regular expression that detects hexadecimal numbers in a text?

For example, ‘0x0f4’, ‘0acdadecf822eeff32aca5830e438cb54aa722e3’, and ‘8BADF00D’.

11条回答
  •  有刺的猬
    2020-11-29 03:33

    This one makes sure you have no more than three valid pairs:

    (([a-fA-F]|[0-9]){2}){3}
    

    Any more or less than three pairs of valid characters fail to match.

提交回复
热议问题