ああ、私はそれがとても簡単だったという答えを得ました。totextは4つのパラメーターを取ります
First parameter is value which is going to be converted
Second parameter is number of decimal previsions.
Third parameter is decimal separator. like (1,432.123) here dot(.) is third parameter.
Forth parameter is thousand separator. like (1,432) here comma(,) is forth parameter.
Example{
totext("1,432.1234",2) results 1,432.12
totext("1,432.1234",2,' " ') results 1,432"1234
totext("1,432.1234",2,' " ', ' : ') results 1:432,1234
}
この例はあまり良くないかもしれませんが、私はあなたにアイデアを与えたいと思います。これは、2つのパラメーターを持つ日付のint変換用です。変換する値と日付の形式。