Delphi-PRAXiS
Seite 1 von 2  1 2      

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi Teile von "array of char" in "String" kopieren (https://www.delphipraxis.net/100822-teile-von-array-char-string-kopieren.html)

Bubblegum 4. Okt 2007 11:51


Teile von "array of char" in "String" k
 
ich möchte Teile eins "array [0..200] of char" in einen "String" kopieren.
Momentan mache ich das mit einer Vorschleife.
Dafür gibt's doch bestimmte eine schnellere Routine., aber finde keine Passende.

mkinzler 4. Okt 2007 11:56

Re: Teile von "array of char" in "String&
 
Du könntest den Speicherbereich kopieren.

Bubblegum 4. Okt 2007 11:57

Re: Teile von "array of char" in "String&
 
Mit mache ich das?

inherited 4. Okt 2007 11:58

Re: Teile von "array of char" in "String&quo
 
Zitat:

Zitat von Bubblegum
Momentan mache ich das mit einer Vorschleife.

Probiers mal mit einer Nachschleife :lol:

mkinzler 4. Okt 2007 11:59

Re: Teile von "array of char" in "String&
 
Schau dir mal Move() an.

Bubblegum 4. Okt 2007 12:04

Re: Teile von "array of char" in "String&
 
Zitat:

Zitat von inherited
Zitat:

Zitat von Bubblegum
Momentan mache ich das mit einer Vorschleife.

Probiers mal mit einer Nachschleife :lol:

Vorschleife :-D :-D :-D

Das kann nicht von mir gewesen sein!

shmia 4. Okt 2007 12:08

Re: Teile von "array of char" in "String&
 
Delphi-Quellcode:
var
  s: string;
  meinarray : array[0..200] of char;
begin
  SetString(s, PChar(@meinarray[40]), 30);
Nachtrag: Cast-Operator PChar() ergänzt

marabu 4. Okt 2007 12:09

Re: Teile von "array of char" in "String&
 
Hi,

ich würde es so machen:

Delphi-Quellcode:
var
  csa: array [Byte] of Char;
  idx, cnt: Integer;
  s: string;
begin
  // ...
  s := Copy(csa, idx, cnt);
end;
Grüße vom marabu

Bubblegum 4. Okt 2007 12:14

Re: Teile von "array of char" in "String&
 
Zitat:

Zitat von shmia
Delphi-Quellcode:
var
  s: string;
  meinarray : array[0..200] of char;
begin
  SetString(s, @meinarray[40], 30);

Das kann ich nicht kompilieren -> inkompatible Typen

shmia 4. Okt 2007 12:19

Re: Teile von "array of char" in "String&
 
Zitat:

Zitat von marabu
Delphi-Quellcode:
var
  csa: array [Byte] of Char;
  idx, cnt: Integer;
  s: string;
begin
  // ...
  s := Copy(csa, idx, cnt);
end;

Hmmm, das funktioniert zwar, ist aber nicht resourcensparend.
Delphi wandelt einen PChar (hier "csa") ja implizit in einen String um.
Da ja nirgends ein abschliesendes #0 definiert wurde, hängt es von den Umständen ab, wie gross
dieser String wird. Also wird ein langer String erstellt, nur um gleich drauf ein Teilstück rauszukopieren.


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:52 Uhr.
Seite 1 von 2  1 2      

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz