Issue
The results of the calculation using the REGEXP_REPLACE function are expected to be [0] instead, the result is [00] when the characters are ".*".
REGEXP_REPLACE([String],'.*','0')
The results of the calculation using the REGEXP_REPLACE function are expected to be [0] instead, the result is [00] when the characters are ".*".
REGEXP_REPLACE([String],'.*','0')
REGEXP_REPLACE([String],'.+', "0")
REGEXP_REPLACE([String],'^.*', "0")