IDE: Locals Dialog: support special chars in extracting raw strings (fpDebug)

git-svn-id: trunk@62994 -
This commit is contained in:
ondrej 2020-04-16 06:27:33 +00:00
parent f5c6dd57a4
commit fa95a279f6

View File

@ -150,10 +150,22 @@ var
begin
Inc(I);
xNum := '';
while (I <= M) and (AValue[I] in ['0'..'9']) do
begin
xNum := xNum + AValue[I]; // not really fast, but OK for this purpose
if (I <= M) and (AValue[I]='$') then
begin // hex
xNum := xNum + AValue[I];
Inc(I);
while (I <= M) and (AValue[I] in ['0'..'9', 'A'..'F', 'a'..'f']) do
begin
xNum := xNum + AValue[I]; // not really fast, but OK for this purpose
Inc(I);
end;
end else
begin // dec
while (I <= M) and (AValue[I] in ['0'..'9']) do
begin
xNum := xNum + AValue[I]; // not really fast, but OK for this purpose
Inc(I);
end;
end;
if TryStrToInt(xNum, xCharOrd) then
begin