Pascal/Turbo Pascal - Control de caracteres

 
Vista:

Control de caracteres

Publicado por xusito (1 intervención) el 22/05/2015 16:12:26
Necesito crear un control de caracteres , para que cuando entre datos, por ejemplo que no me acepte entrarlos a vacio, o que solamente me deje entrar cuando meta una letra. Alguien sabria como? Gracias de antemano.
Valora esta pregunta
Me gusta: Está pregunta es útil y esta claraNo me gusta: Está pregunta no esta clara o no es útil
0
Responder
sin imagen de perfil

Control de caracteres

Publicado por David (224 intervenciones) el 22/05/2015 16:26:00
Si lo que pretendes hacer es que una variable no quede vacía, puedes hacer algo como esto:

1
2
3
4
5
6
7
8
9
10
11
12
13
Uses CRT;
 
Var
 
NOMBRE: string;
 
begin
   Repeat
      clrscr;
      writeln('NOMBRE: ');
     readln(NOMBRE);
  Until NOMBRE <>'';
end.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar

Control de caracteres

Publicado por xusito (3 intervenciones) el 24/05/2015 12:06:24
Te mando el codigo, porque lo que me has mandado nose como implementarlo. Gracias. Lo suyo seria poner el control tanto en procedure entrada, como en procedure modifica.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
uses crt,dos;
 
TYPE
        REG1=RECORD
             Autor:STRING[20];
             Edito:STRING[30];
             Cod_Libro:string[5];
             Lugar:string[30];
             con:char;
        END;
 
	VAR
			fichero:file of reg1;
			fichcopia:file of reg1;
			OPCION,OPCID:char;
			OPCI,Z,I:INTEGER;
			nf:string[30];
			a:reg1;
 
procedure conum(var nom1:string;h:integer);
		var
			p:char;
			i1,cc:integer;
	begin
			for i1:=1 to h do begin
                     gotoxy(20+i1,1);
                     write(chr(176));
            end;
			i1:=0;
			cc:=1;
				repeat
					gotoxy(21+i1,1);p:=upcase(readkey);
                   case p of
                       #8:begin
								  i1:=i1-1;
								  if i1<0 then i1:=0;
								  gotoxy(21+i1,1);
								  write(chr(176));
								  cc:=cc-1;
								  if cc<1 then cc:=1;
								  delete(nom1,cc,1);
                          end;
                     #48..#57:begin
									if cc<=h then begin
									  write(p);
									  insert(p,nom1,cc);
									  i1:=i1+1;
									  cc:=cc+1;
									 end;
                              end;
 
                   end;
                until(p=#13) and (cc>h);
    end;
 
	PROCEDURE mirarepe(nn:string;VAR vis:INTEGER);
		var pu:integer;
			kk:boolean;
	BEGIN
			reset(fichero);
			pu:=0;
			kk:=true;
		while(pu<filesize(fichero)) and kk do begin
		              read(fichero,a);
                      IF(a.cod_libro=nn) THEN BEGIN
                                        vis:=pu;
										kk:=false;
					  END;
					inc(pu);
        END;
		close(fichero);
	END;
 
	procedure entrada;
	var
		nn:string;
		vis:integer;
		con:char;
		a1:reg1;
	begin
	CON:='S';
	WHILE(CON='S') DO BEGIN
					clrscr;
							write(' Dar Autor : ');
							nn:='';
							readln(nn);
							a1.Autor:=nn;
							clrscr;
							write('Dar Editorial: ');
							nn:='';
							readln(nn);
							a1.Edito:=nn;
							clrscr;
							write(' Dar Lugar : ');
							nn:='';
							readln(nn);
							a1.Lugar:=nn;
							clrscr;
							writeln(' Dar Codigo Libro : ');
							nn:='';
								conum(nn,5);
								a1.Cod_libro:=nn;
								a1.con:='a';
								vis:=-22;
									mirarepe(nn,vis);
										if (vis=-22) then begin
												reset(fichero);
												seek(fichero,filesize(fichero));
												write(fichero,a1);
												close(fichero);
												clrscr;
										end
										else writeln('No Valido ');
									writeln;
									write('Mas entradas S - N : ');
									REPEAT
									con:=upcase(readkey);
									UNTIL UPCASE(CON) IN['N','S'];
							END;
						end;
 
	procedure listado;
		var
		zz,h1:integer;
	begin
				reset(fichero);
				zz:=filesize(fichero);
				clrscr;
				writeln(' LISTADO: ');
				writeln;
		if zz>0 then begin
		h1:=2;
					while(not(eof(fichero)))do begin
							read(fichero,a);
							writeln;
							gotoxy(15,1);
							writeln('Autor:');
							gotoxy(15,h1);
							writeln(a.Autor);
							gotoxy(25,1);
							writeln('Editorial:');
							gotoxy(25,h1);
							writeln(a.Edito);
							gotoxy(38,1);
							writeln('Lugar:');
							gotoxy(38,h1);
							writeln(a.Lugar);
							gotoxy(48,1);
							writeln('CodLibro:');
							gotoxy(48,h1);
							writeln(a.Cod_libro);
							gotoxy(61,1);
							writeln('Alta/Baja:');
							gotoxy(61,h1);
							writeln(a.con);
							inc(h1);
					end;
		end;
		    writeln;
			write('Dar tecla : ');readln;
			close(fichero);
	end;
 
	procedure modifica;
	var
	 x1,x2:integer;
	 cod2:string[5];
	 nunom:string[20];
	 ok:boolean;
	begin
			reset(fichero);
			clrscr;
			write('Dar Codigo Libro: ');
			cod2:='';
			conum(cod2,5);
			writeln;
			x2:=filesize(fichero);
			x1:=0;
			ok:=true;
			while(x1<x2) and ok do begin
					seek(fichero,x1);
					read(fichero,a);
				if (a.Cod_libro=cod2) then begin
					writeln;
					write('Autor: ',a.Autor);
					writeln;
					write('Dar nuevo Autor:');
					readln(nunom);
					a.Autor:=nunom;
					writeln;
					write('Editorial: ',a.Edito);
					writeln;
					write('Dar nueva editorial:');
					readln(nunom);
					a.Edito:=nunom;
					writeln;
					write('Lugar:',a.Lugar);
					writeln;
					write('Dar nuevo Lugar:');
					readln(nunom);
					a.Lugar:=nunom;
					seek(fichero,x1);
					write(fichero,a);
					ok:=false;
					end;
			inc(x1);
		end;
		writeln;
		write('Dar tecla: '); readln;
		close(fichero);
	end;
 
	procedure busqueda;
	 var
	 x1,x2:integer;
	 editor:string[30];
	 ok:boolean;
	 l1:char;
	begin
			reset(fichero);
			clrscr;
			write('Dar Editorial: ');
			editor:='';
			readln(editor);
			writeln;
			x2:=filesize(fichero);
			x1:=0;
			ok:=true;
			while(x1<x2) and ok do begin
					seek(fichero,x1);
					read(fichero,a);
				if (a.Edito=editor) then begin
					writeln;
					write('Cambiar Control S :');l1:=upcase(readkey);
						if (l1='S') then begin
					                l1:=a.con;
									case l1 of
											'a':a.con:='b'
											else a.con:='a';
									end;
						end;
					seek(fichero,x1);
					write(fichero,a);
					ok:=false;
				end
				else begin
				inc(x1);
			end;
		end;
		writeln;
		write('Dar tecla: '); readln;
		close(fichero);
	end;
 
    procedure reorga;
		var zz,l1,posi:integer;
	begin
				reset(fichero);//abrimos fichero con reset
				zz:=filesize(fichero);//filesize numero registro de mi fichero
				clrscr;
				writeln('LISTADO 2');
				WRITELN('##########');
				writeln;
		if zz>0 then begin
		        assign(fichcopia,'Ficopia.dat');
		        rewrite(fichcopia);
		        posi:=0;
		        for l1:=0 to zz-1 do begin
							seek(fichero,l1);
							read(fichero,a);
							if (a.con='a') then begin
											seek(fichcopia,posi);
											write(fichcopia,a);
											inc(posi);
											writeln(a.Autor,a.Edito,a.Lugar,a.Cod_libro,a.con);
							end;
 
		        end;
 
		        close(fichcopia);
 
		end;
		    writeln;
			write('Fin Reorga Dar tecla : ');readln;
			close(fichero);//siempre cerrar fichero con close
			erase(fichero);
			rename(fichcopia,nf);
	end;
 
 
	procedure menu;
		var
			a:array[1..12] of string[20];
	begin
			a[1]:='   (1)   ENTRADA    ';
			A[2]:='   (2)   LISTADO    ';
			A[3]:='   (3)   MODIFICA  ';
			A[4]:='   (4)   BUSQUEDA  ';
			a[5]:='   (5)   REORGA  ';
			a[6]:='   (6)   ESC FICHERO';
			a[7]:='   (7)   FIN        ';
			A[8]:='  MENU - GENERAL    ';
			textbackground(brown);
			clrscr;
			gotoxy(29,4);
 
			WRITE(A[8]);
			textcolor(7);textbackground(0);
			gotoxy(55,1);
 
			WRITE('FICHERO -> ',nf);
 
				for i:=1 to 7 do begin
							 gotoxy(29,5+2*i);
							 write(a[i]);
                end;
 
				OPCION:=' ';
			WHILE OPCION<>'S'DO BEGIN
							IF OPCI<1 THEN OPCI:=7;
							IF OPCI>7 THEN OPCI:=1;
                 gotoxy(29,5+2*opci);
                textcolor(0);textbackground(7);
                 write(a[opci]);
                textcolor(7);textbackground(0);
                 opcid:=READKEY;
                 z:=opci;
                 CASE OPCID OF
                      #80:OPCI:=OPCI+1;
                      #72:OPCI:=OPCI-1;
                      #49:OPCI:=1;
                      #50:OPCI:=2;
                      #51:OPCI:=3;
                      #52:OPCI:=4;
                      #53:opci:=5;
                      #54:opci:=6;
                      #55:opci:=7;
					  #13:OPCION:='S';
                 END;
                      gotoxy(29,5+2*z);
                      write(a[z]);
            END;
	end;
 
	procedure controlarch;
	var ok:boolean;
	begin
			gotoxy(35,1);
			WRITE('FICHERO -> ',nf);
			{$I-}
			assign(fichero,nf);
			reset(fichero);
			{$I+}
			ok:=(ioresult=0);
					if not ok then begin
						   clrscr;
						   writeln(' Fichero No existente ');delay(1000);
						   rewrite(fichero);
					end
					else begin
						writeln(' Fichero existente ');delay(1000);
						reset(fichero);
					end;
			close(fichero);
	end;
 
procedure archivo;
		var
			a:array[1..7] of string[20];
	begin
			a[1]:='Revistas.dat';
			A[2]:='Libros.dat';
			A[3]:='CD.dat';
			A[4]:='Texto.dat';
			a[5]:='Varios.dat';
			A[6]:='  MENU - FICHEROS  ';
			textbackground(brown);
			clrscr;
			gotoxy(27,4);
			WRITE(A[6]);
			textcolor(7);textbackground(0);
 
				for i:=1 to 5 do begin
							 gotoxy(29,5+2*i);
							 write(a[i]);
                end;
				OPCION:=' ';
			WHILE OPCION<>'S'DO BEGIN
							IF OPCI<1 THEN OPCI:=5;
							IF OPCI>5 THEN OPCI:=1;
                 gotoxy(29,5+2*opci);
                textcolor(0);textbackground(7);
                 write(a[opci]);
                textcolor(7);textbackground(0);
                 opcid:=READKEY;
                 z:=opci;
                 CASE OPCID OF
                      #80:OPCI:=OPCI+1;
                      #72:OPCI:=OPCI-1;
                      #49:OPCI:=1;
                      #50:OPCI:=2;
                      #51:OPCI:=3;
                      #52:OPCI:=4;
                      #53:opci:=5;
                      #13:OPCION:='S';
                 END;
                      gotoxy(29,5+2*z);
                      write(a[z]);
                      case opci of
                        1:nf:=a[1];
                        2:nf:=a[2];
                        3:nf:=a[3];
                        4:nf:=a[4];
                        5:nf:=a[5];
                      end;
 
            END;
            controlarch;
	end;
 
 
begin
		clrscr;
		archivo;
		repeat
			menu;
			case opci of
				1:entrada;
				2:listado;
				3:modifica;
				4:busqueda;
				5:reorga;
				6:archivo;
				end;
		until opci=7;
end.
Valora esta respuesta
Me gusta: Está respuesta es útil y esta claraNo me gusta: Está respuesta no esta clara o no es útil
0
Comentar