Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,880 questions

51,806 answers

573 users

How to split a string by a substring delimiter in Pascal

1 Answer

0 votes
program SplitString;

uses
  SysUtils; // Trim

var
  str, delimiter: string;
  parts: array of string;
  i, startPos, delimPos: Integer;
  tempStr: string;
begin
  str := 'Apples and Oranges and Bananas and Grapes are tasty';
  delimiter := 'and';
  tempStr := str;
  startPos := 1;

  while True do
  begin
    delimPos := Pos(delimiter, tempStr);
    if delimPos = 0 then
    begin
      SetLength(parts, Length(parts) + 1);
      parts[High(parts)] := Trim(tempStr);
      Break;
    end
    else
    begin
      SetLength(parts, Length(parts) + 1);
      parts[High(parts)] := Trim(Copy(tempStr, 1, delimPos - 1));
      Delete(tempStr, 1, delimPos + Length(delimiter) - 1);
    end;
  end;

  // Output each trimmed part
  for i := 0 to High(parts) do
    WriteLn(parts[i]);
end.





(*
run:
  
Apples
Oranges
Bananas
Grapes are tasty

*)

 



answered Aug 11, 2025 by avibootz

Related questions

1 answer 67 views
1 answer 40 views
1 answer 91 views
1 answer 98 views
2 answers 93 views
...