whats new ¦  programming tips ¦  indy articles ¦  intraweb articles ¦  informations ¦  links ¦  interviews
 misc ¦  tutorials ¦  Add&Win Game

Tips (1541)

Database (90)
Files (137)
Forms (107)
Graphic (114)
IDE (21)
Indy (5)
Internet / LAN (130)
IntraWeb (0)
Math (76)
Misc (126)
Multimedia (45)
Objects/
ActiveX (51)

OpenTools API (3)
Printing (35)
Strings (83)
System (266)
VCL (242)

Top15

Tips sort by
component


Search Tip

Add new Tip

Add&Win Game

Advertising

41 Visitors Online


 
...use Strings in a Case Statement?
Autor: Loïs Bégué
Homepage: http://www.begue.de
[ Print tip ]  

Tip Rating (5):  
     


{
  Funktioniert unabhängig von der Klein-/Großscheibung in dem Input-String:
  Versuchen Sie es z.B. mit "Mother" oder "mOTHER"...

  Damit kann man seine eigene Makrosprache entwickeln oder bestimmte
  Teile eines Strings aus einem SQL statement, aus einer wohlgeformten Datei
  wie im XML-Format...interpretieren.
}

{
  It works fine and it's not case sensitive:
  Try to give "Mother" or "mOTHER" in the Input-String...

  For exemple, you may use this to programm your own macro command system.
  You can also parse a well formed text file (XML...)
  Or to interpret a Database Field name as a selector, or whatelse you want.
}


uses
  
TypInfo;

type
  
TNumericChoiceParent = (ncp_Mother, ncp_Father, ncp_Child);

procedure TForm1.btChooseClick(Sender: TObject);
var
  
S: string;
begin
  
S := InputEdit.Text;
  case TNumericChoiceParent(GetEnumValue(TypeInfo(TNumericChoiceParent), 'ncp_' + S)) of
    
ncp_Mother: ShowMessage('Hello Mom :o)');
    ncp_Father: ShowMessage('Hi, Dad -]');
    ncp_Child: ShowMessage('Shut up and eat your soup !-(');
  else
    
ShowMessage('Who do you think that you are?');
  end;
end;





 

Rate this tip:

poor
very good


Copyright © by SwissDelphiCenter.ch
All trademarks are the sole property of their respective owners