<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
		<id>https://wiki.soldat.pl/index.php?action=history&amp;feed=atom&amp;title=ScriptCore3.SplitRegExpr</id>
		<title>ScriptCore3.SplitRegExpr - Revision history</title>
		<link rel="self" type="application/atom+xml" href="https://wiki.soldat.pl/index.php?action=history&amp;feed=atom&amp;title=ScriptCore3.SplitRegExpr"/>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=ScriptCore3.SplitRegExpr&amp;action=history"/>
		<updated>2026-05-26T05:13:29Z</updated>
		<subtitle>Revision history for this page on the wiki</subtitle>
		<generator>MediaWiki 1.30.0</generator>

	<entry>
		<id>https://wiki.soldat.pl/index.php?title=ScriptCore3.SplitRegExpr&amp;diff=1213&amp;oldid=prev</id>
		<title>Mighty: new page</title>
		<link rel="alternate" type="text/html" href="https://wiki.soldat.pl/index.php?title=ScriptCore3.SplitRegExpr&amp;diff=1213&amp;oldid=prev"/>
				<updated>2013-08-25T13:21:05Z</updated>
		
		<summary type="html">&lt;p&gt;new page&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt; '''procedure SplitRegExpr (const ARegExpr, AInputStr: string; APieces : [[TStrings]]);'''&lt;br /&gt;
  ARegExpr: regular expression&lt;br /&gt;
  AInputStr: string to be split&lt;br /&gt;
  APieces: result of split as [[TStrings]] &lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Split ''AInputStr'' into ''APieces'' by r.e. ''ARegExpr'' occurencies&lt;br /&gt;
&lt;br /&gt;
For detailed information about Regular Expressions see [http://en.wikipedia.org/wiki/Regular_expression Regular_Expression on Wikipedia]&lt;br /&gt;
&lt;br /&gt;
==Example==&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;pascal&amp;quot;&amp;gt;&lt;br /&gt;
const&lt;br /&gt;
  Reg = 'line';&lt;br /&gt;
  Str = '0line1line2line3line4';&lt;br /&gt;
&lt;br /&gt;
var&lt;br /&gt;
  Res: TStringList;&lt;br /&gt;
&lt;br /&gt;
begin&lt;br /&gt;
  Res := File.CreateStringList;&lt;br /&gt;
  &lt;br /&gt;
  SplitRegExpr(Reg,Str,Res);&lt;br /&gt;
  &lt;br /&gt;
  WriteLn(Res.Text);&lt;br /&gt;
  {&lt;br /&gt;
  0&lt;br /&gt;
  1&lt;br /&gt;
  2&lt;br /&gt;
  3&lt;br /&gt;
  4&lt;br /&gt;
  &lt;br /&gt;
  }&lt;br /&gt;
  &lt;br /&gt;
  Res.Free;&lt;br /&gt;
end.&lt;br /&gt;
&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Functions]]&lt;/div&gt;</summary>
		<author><name>Mighty</name></author>	</entry>

	</feed>