本文介绍了如何使用Delphi中的当前区域设置格式化整数的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧! 问题描述 29岁程序员,3月因学历无情被辞! var i : integer;i := 1234567;Given the above, I want the string "1,234,567" as output (assuming UK locale). IntToStr just gives me "1234567". I'm sure there's a one-liner for this, but I can't find it...推荐答案尝试格式功能。Label1.Caption := Format('%.0n', [i + 0.0]); 这篇关于如何使用Delphi中的当前区域设置格式化整数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持! 上岸,阿里云!
08-24 10:13