Guest User

Untitled

a guest
May 22nd, 2012
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var
  2. vstup, novy:string;
  3. i:integer;
  4. begin
  5. vstup:= (edit1.Text);
  6. novy:='';
  7. for i:= 1 to length(vstup) do
  8.  
  9.   if (vstup[i]>='0') and (vstup[i]<='9') or
  10.   vstup[i]>='a') and (vstup[i]<='z') or
  11.   vstup[i]>='A') and (vstup[i]<='Z') then
  12.   novy:= novy + vstup[i];
  13.  
  14. memo1.lines.add (novy);
  15. end;
  16.  
  17. end.
Advertisement
Add Comment
Please, Sign In to add comment