Regular expression for a hexadecimal number?

后端 未结 11 1641
旧巷少年郎
旧巷少年郎 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:38

    In case you need this within an input where the user can type 0 and 0x too but not a hex number without the 0x prefix:

    ^0?[xX]?[0-9a-fA-F]*$
    

提交回复
热议问题