Delphi-PRAXiS

Delphi-PRAXiS (https://www.delphipraxis.net/forum.php)
-   Object-Pascal / Delphi-Language (https://www.delphipraxis.net/32-object-pascal-delphi-language/)
-   -   Delphi StringTokenizer für Delphi (https://www.delphipraxis.net/76717-stringtokenizer-fuer-delphi.html)

TomDooley 8. Sep 2006 14:46


StringTokenizer für Delphi
 
Hallo

Gibt es so etwas wie den StringTokenizer in JAVA für Delphi oder muss das selbst gebaut werden?

Danke und Gruss

Klaus01 8. Sep 2006 20:37

Re: StringTokenizer für Delphi
 
vielleicht suchst Du die Funktion ExtractStrings.

Ein Auszug aus der Hilfe:
Zitat:

Fills a string list with substrings parsed from a delimited list.

Unit

Classes

Category

string handling routines (null-terminated)

function ExtractStrings(Separators, WhiteSpace: TSysCharSet; Content: PChar; Strings: TStrings): Integer;

Description

Use ExtractStrings to fill a string list with the substrings of the null-terminated string specified by Content.

Separators is a set of characters that are used as delimiters, separating the substrings.
Carriage returns, newline characters, and quote characters (single or double) are always treated as separators.
Separators are ignored when inside a quoted string until the final end quote.
(Note that quoted characters can appear in a quoted string if the quote character is doubled.)

WhiteSpace is a set of characters to be ignored when parsing Content if they occur at the beginning of a string.

Content is the null-terminated string to parse into substrings.

Strings is a string list to which all substrings parsed from Content are added.
The string list is not cleared by ExtractStrings, so any strings already in the string list are preserved.

ExtractStrings returns the number of strings added to the Strings parameter.

Note: ExtractStrings does not add empty strings to the list.

Grüße
Klaus

TomDooley 20. Sep 2006 16:03

Re: StringTokenizer für Delphi
 
ja, genau sowas... ist in meiner Delphi5-Hilfe leider noch nicht enthalten.

DANKE :thumb:


Alle Zeitangaben in WEZ +1. Es ist jetzt 14:35 Uhr.

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