RosettaCodeData/Task/Strip-comments-from-a-string/PascalABC.NET/strip-comments-from-a-string.pas

8 lines
226 B
ObjectPascal
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
function RemoveComments(s,delim: string): string
:= Regex.Replace(s, delim + '.+', '');
begin
Writeln(RemoveComments('apples, pears # and bananas','#'));
Writeln(RemoveComments('apples, pears ; and bananas',';'));
end.