So you have an integer and you want to make it a money amount? In that case, use something like this:
Edit: I modified it into a function so you can use it easily:
number=1934
returnstring$=ConvertToMoney(number)
`Print it so you can see that it worked
print moneyamount$
wait key
end
function ConvertToMoney(number)
`Make the integer into a string
moneyamount$=str$(number)
`Add the dollar sign to the front (because I don't know how to do a pounds sign)
moneyamount$="$"+moneyamount$
`Put a period before the last two numbers
`This saves the last two digits in a seperate string
moneyamountright$=right$(moneyamount$,2)
`This removes them from the original
moneyamount$=left$(moneyamount$,len(moneyamount$)-2)
`This adds the period in
moneyamount$=moneyamount$+"."
`And finally, this tacks the last two digits back on
moneyamount$=moneyamount$+moneyamountright$
endfunction moneyamount$
[i]"Grow food in dirt? Save time — eat dirt."[i]