mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 17:18:17 +02:00
IDE: Locals Dialog: support special chars in extracting raw strings (fpDebug)
git-svn-id: trunk@62994 -
This commit is contained in:
parent
f5c6dd57a4
commit
fa95a279f6
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user