2

如何使用DisplayFormat在数字之间添加空格。

像这个例子:

50130301037855000150550010000000131000000132

我需要这个:

5013 0301 0378 5500 0150 5500 1000 0000 1310 0000 0132

有人有想法吗?谢谢。

4

3 回答 3

3

您不能仅使用 DisplayFormat 属性进行这样的格式化,但您可以依靠 OnGetText 事件来实现这一点。

我假设您的字段是字符串类型,例如:

function InsertBlankEach4Chars(S: string): string;
begin
  Result := '';
  while S <> '' do
  begin
    Result := Result + Copy(S, 1, 4) + ' ';
    Delete(S, 1, 4);
  end;
  Result := Trim(Result);
end;

procedure TMyForm.MyQueryFieldGetText(Sender: TField;
  var Text: string; DisplayText: Boolean);
begin
  if DisplayText then
    Text := InsertBlankEach4Chars(Sender.AsString)
  else
    Text := Sender.AsString;
end;

免责声明:此代码是在浏览器中编写的,未经测试。如果你打算在时间敏感的过程中使用它,我警告你这个函数可能会被优化以获得更好的性能。

于 2013-03-26T20:42:54.793 回答
2

我使用DisplayFormat找到了答案

9999 9999 9999 9999 9999 9999 9999 9999 9999 9999 9999;0; 

谢谢大家。

于 2013-03-26T21:17:14.213 回答
1

如果您不想将其用作货币,请使用它。

procedure TForm1.Edit1Change(Sender: TObject);
var  a :Currency;
begin
ThousandSeparator :=' ';
if edit1.Text <>'' then  a:=strtofloat(edit1.Text) else a:=0;
edit2.Text :=FloatToStrF(a,ffNumber, 12, 2);
end;
于 2020-04-09T10:27:35.237 回答