Anyone can help with how can I find the first full Word that contains numbers? I have an adress, for example:
procedure TForm1.Button4Click(Sender: TObject); var
You can use simething like this to know if a word contains chars '0'..'9'
function DigitInWord(s: string): boolean; var ch: char; begin result := false; for ch :='0' to '9' do if Pos(s, ch) > 0 then begin result := true; break; end; end;