Which sentence describes the following regular expression match?
<code>
preg_match(‘/^\d*(?:\.[0-9]+)?$/’, $test);
</code>

A.
It matches float numbers with thousand separators.
B.
It matches float numbers without thousand separators.
C.
It matches binary integer numbers.
D.
It matches any string.
E.
It does not match anything
I have the same idea. B
0
0