Can someone please help with regex for replacing all integers and doubles with in a given String with single quotes : Key1=a,Key2=2,Key3=999.6,Key4=8888,Key5=true
with this : Key1=a,Key2='2',Key3='999.6',Key4='8888',Key5=true
I would like to use regex group capturing rules to replace all numeric string startng after = and replace with ''.