question: Which of the following
patterns will correctly capture all Hex numbers that are delimited by atleast one whitespace in an input text?
correct answer given is: \s0[x][X][0-9a-fA-F]+\s
is it correct ???
i think it will search for two consequitive xX which can never be a hex number.
am i right??? it should be [xX] from my view
avi sinha