In my dataset, there are some numbers that are too large to be int values (>2147483647). When they exceed this limit, they are recorded as
"price_amount" : { "$numberLong" : "3900000000" }
. However, I have updated the data types so that I can now utilize 64-bit integers.
Is there a way to search for all occurrences of
{ "$numberLong" : "x" }
and replace them with just x
?
I was considering using an external script for this task, but I am curious if it can be done more efficiently with a find & replace tool.
Thank you in advance!