Link to home
Start Free TrialLog in
Avatar of mantra246
mantra246

asked on

String Question...

How do i convert a PAnsiChar string that is retrieved from a record back to a normal string:

ie: if the PAnsiChar string is returned as:  aaaa#0bbbb#0cccc#0dddd#0

i want to break the PAnsiChar string up into a normal string that will have aaaabbbbccccdddd in it
Avatar of Mamouri
Mamouri

Hi!

Just use StrCopy fiunction. It must solve the problem

Regards
Avatar of mantra246

ASKER

StrCopy and StrLCopy only copies to the first #0  - i need to be able to get the entire line.
PAnsiChar strings are defined to end at the first #0.
How do you decide where the end of your data is?

Regards
Paul
It is information that is returned by windows in a record - the record contains a list of items with each being ended by a #0 - when i try to get the list it only gives me the first one and not the rest that i know is there.
Then you should define a record in Delphi to accept the data.
For your example data:

TMyRecord = record
  astr: array[0..4] of char; /* Note: must start with 0 index and be large enough to accommodate the #0 terminator char. */
  bstr: array[0..4] of char;
  cstr: array[0..4] of char;
  dstr: array[0..4] of char;
end;

var
  myrecord: TMyRecord;
  var a,b,c,d: string;
begin
  SomeWindowFunction(@MyRecord);
  a := PChar(MyRecord.aStr);
  b := PChar(MyRecord.bStr);
  c := PChar(MyRecord.cStr);
  d := PChar(MyRecord.dStr);
end;

By the way most windows structures are already defined as Delphi records.

Regards
Paul
what about

procedure TForm1.Button1Click(Sender: TObject);
const
  ANSI_LENGTH = 20;
var
  P: PAnsiChar;
  S: String;
  I: Integer;
begin
  P := 'aaaa' + #0 + 'bbbb' + #0 + 'cccc' + #0 + 'dddd' + #0;
  for I := 0 to ANSI_LENGTH do
  begin
    If (P + I)^ <> #0 then
      S := S + (P + I)^;
  end;
  showmessage(s);
end;
my above code has a minor bug ... it should be:

for I := 0 to ANSI_LENGTH -1 do

instead of

for I := 0 to ANSI_LENGTH  do
Since you're dealing with binary data, you MUST know the length of the PAnsiChar variable ... That's unless you have a terminating character at the end of the PAnsiChar string
Avatar of Wim ten Brink
I guess the end is marked by a double #0, so walk through the data until you're at the end of it all. An example:

program Project1;

{$APPTYPE CONSOLE}

const
  Data = 'aaaa'#0'bbbbb'#0'ccccccccccc'#0#0;

var
  Value: PAnsiChar = Data;
  Loop: PAnsiChar;
  Line: string;

begin
  Line := Value;
  Loop := Value;
  while (Length(Line) > 0) do begin
    WriteLn(Line);
    while (Loop^ <> #0) do
      Inc(Loop);
    Inc(Loop);
    Line := Loop;
  end;
  Write('Press <Enter>. ');
  ReadLn;
end.

However, if the end of the list isn't ended with a double #0#0 but if you have a fixed amount of elements then you'll need to loop <number_of_items> times through the string value.
hi, all :)
just my two cents..
basically code is same as provided by Alex, but shorter (not faster)

procedure SplitPCharArray(aList: TStrings; pac: PAnsiChar);
var
  l: integer;
begin
  aList.BeginUpdate;
  try
    aList.Clear;
    l := StrLen(pac);
    while l > 0 do begin
      aList.Add(pac);
      inc(pac, l+1);
      l := strLen(pac);
    end;
  finally
    aList.EndUpdate;
  end;
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
  SplitPCharArray(Memo1.Lines, 'aaaa'+#0+'bbbb'+#0+'cccc'+#0#0);
end;

wbr, mo.
ASKER CERTIFIED SOLUTION
Avatar of mocarts
mocarts

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I think mocarts has it ....
> It is information that is returned by windows in a record - the record contains a list of items with each being ended by a #0

What is Windows definition of the record?
Why would you want to "parse" the record structure yourself?
That seems like a very backwards way of getting the returned data from the Window's function.
I cannot possibly imagine that Windows would pass back a string constructed like that.

Regards
Paul

zebada,

Although I agree its a very weird way of inter-communicating with a "windows record", I do know several News Feed agents transmit their information (via a VPN, Cable, E0, etc..) just like that ...
Good point!