function snToString(%string)
{
	%split = strPos(%string,"e+");
	if(%split == -1)
		return %string;
	%decimal = strReplace(getSubStr(%string,0,%split),".","");
	%times = getSubStr(%string,%split + 2,strLen(%string) - (%split + 2));
	%times -= strLen(%decimal) - 1;
	for(%i=1;%i<=%times;%i++)
	{
		%zeros = %zeros @ "0";
	}
	return %decimal @ %zeros;
}
Just whipped this up