![]() |
Pos and Copy
Hi, also meine frage.. im unten angegeben quelltext wird ja der String angezeig wenn ein + vorkommt, wie schreibe ich das programm um damit bei allen operatoren(+ - * /) die segmente initialisiert werden..?
Delphi-Quellcode:
procedure TFormTR.spErgebnisClick(Sender: TObject);
var Formular,Seg1,Seg2: string; begin Formular := LabelAnzeige.Caption; if pos('+',Formular) > 1 then begin Seg1 := copy(Formular,1,pos('+',Formular) - 1); Seg2 := copy(Formular,pos('+',Formular) + 1,length(Formular)); end; ShowMessage(Seg1+'+'+Seg2); end; |
Re: Pos and Copy
Überleg mal welches ist denn die entscheidende Zeile in dem Quellcode ist.
|
Re: Pos and Copy
Delphi-Quellcode:
.. etwas umgestaltet
procedure TFormTR.spErgebnisClick(Sender: TObject);
var Formular,Seg1,Seg2: string; position : Byte; zeichen : char; begin Formular := LabelAnzeige.Caption; zeichen := '+'; position := pos(zeichen,Formular); if position > 1 then begin Seg1 := copy(Formular,1,position - 1); Seg2 := copy(Formular,position + 1,length(Formular)); end else ShowMessage('Zeichen ('+zeichen+')nicht gefunden!);); end; Auf anraten von Luckie noch etwas umgebaut. Aber was soll mit Seg1 und Seg2 passieren, sie sind nur lokal definiert?? Grüße Klaus |
Re: Pos and Copy
Was zeigt die ShowMessage an, wenn das Zeichen nicht gefunden wurde?
|
Re: Pos and Copy
ok ich habs gelöst danke trotzdem..
ich habe es mi einer schleife gemacht |
Alle Zeitangaben in WEZ +1. Es ist jetzt 20:48 Uhr. |
Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO © 2011, Crawlability, Inc.
Delphi-PRAXiS (c) 2002 - 2023 by Daniel R. Wolf, 2024-2025 by Thomas Breitkreuz