Nur der Vollständigkeit halber
Delphi-Quellcode:
function GetCallerId(str: string): string;
var
Match: TMatch;
begin
result := '';
Match := TRegex.Create('CallerIDNum:(.*)').Match(str);
if Match.Success then
result := Trim(Match.Groups[1].Value);
end;