1
0
mirror of https://github.com/moparisthebest/Simba synced 2024-12-03 06:12:14 -05:00
Simba/Tests/PS/regex.simba

12 lines
190 B
Plaintext
Raw Permalink Normal View History

2010-09-11 08:01:33 -04:00
program new;
var
x : TRegExp;
begin
x := TRegExp.create;
x.Expression := 'W?alk';
x.InputString := 'Lets talk bitch!';
Writeln(x.ExecPos(1));
writeln(x.Match[0]);
x.free;
end.