File: io.html

package info (click to toggle)
erlang-doc-html 1%3A11.b.2-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 23,284 kB
  • ctags: 10,724
  • sloc: erlang: 505; ansic: 323; makefile: 62; perl: 61; sh: 45
file content (1411 lines) | stat: -rw-r--r-- 33,610 bytes parent folder | download
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
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- This document was generated using DocBuilder 3.3.3 -->
<HTML>
<HEAD>
  <TITLE>io</TITLE>
  <SCRIPT type="text/javascript" src="../../../../doc/erlresolvelinks.js">
</SCRIPT>
  <STYLE TYPE="text/css">
<!--
    .REFBODY     { margin-left: 13mm }
    .REFTYPES    { margin-left: 8mm }
-->
  </STYLE>
</HEAD>
<BODY BGCOLOR="#FFFFFF" TEXT="#000000" LINK="#0000FF" VLINK="#FF00FF"
      ALINK="#FF0000">
<!-- refpage -->
<CENTER>
<A HREF="http://www.erlang.se">
  <IMG BORDER=0 ALT="[Ericsson AB]" SRC="min_head.gif">
</A>
<H1>io</H1>
</CENTER>

<H3>MODULE</H3>
<DIV CLASS=REFBODY>
io
</DIV>

<H3>MODULE SUMMARY</H3>
<DIV CLASS=REFBODY>
Standard IO Server Interface Functions
</DIV>

<H3>DESCRIPTION</H3>
<DIV CLASS=REFBODY>

<P>This module provides an interface to standard Erlang IO servers.
The output functions all return <CODE>ok</CODE> if they are successful,
or exit if they are not.
<P>In the following description, all functions have an optional
parameter <CODE>IoDevice</CODE>. If included, it must be the pid of a
process which handles the IO protocols. Normally, it is the
<CODE>IoDevice</CODE> returned by
<A HREF="javascript:erlhref('../../../../', 'kernel', 'file.html#open/2');">file:open/2</A>.
<P>For a description of the IO protocols refer to Armstrong,
Virding and Williams, 'Concurrent Programming in Erlang', Chapter
13, unfortunately now very outdated, but the general principles
still apply.
</DIV>

<H3>DATA TYPES</H3>
<DIV CLASS=REFBODY>

<PRE>
io_device()
  as returned by file:open/2, a process handling IO protocols
    
</PRE>

</DIV>

<H3>EXPORTS</H3>

<P><A NAME="put_chars/2"><STRONG><CODE>put_chars([IoDevice,] IoData) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>IoData = iodata() -- see erlang(3)</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Writes the characters of <CODE>IoData</CODE> to the standard output
(<CODE>IoDevice</CODE>).
</DIV>

<P><A NAME="nl/1"><STRONG><CODE>nl([IoDevice]) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Writes new line to the standard output (<CODE>IoDevice</CODE>).
</DIV>

<P><A NAME="get_chars/3"><STRONG><CODE>get_chars([IoDevice,] Prompt, Count) -&#62; string() | eof
</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>Count = int()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads <CODE>Count</CODE> characters from standard input
         (<CODE>IoDevice</CODE>), prompting it with <CODE>Prompt</CODE>. It
         returns:
<P>
<DL>

<DT>
<CODE>String</CODE>
</DT>

<DD>
         The input characters.<BR>

         
</DD>

<DT>
<CODE>eof</CODE>
</DT>

<DD>
         End of file was encountered.<BR>

         
</DD>

</DL>

</DIV>

<P><A NAME="get_line/2"><STRONG><CODE>get_line([IoDevice,] Prompt) -&#62; string() | eof</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads a line from the standard input (<CODE>IoDevice</CODE>),
prompting it with <CODE>Prompt</CODE>. It returns:
<P>
<DL>

<DT>
<CODE>String</CODE>
</DT>

<DD>
         The characters in the line terminated by a LF (or end of
         file).<BR>

         
</DD>

<DT>
<CODE>eof</CODE>
</DT>

<DD>
         End of file was encountered.<BR>

         
</DD>

</DL>

</DIV>

<P><A NAME="setopts/2"><STRONG><CODE>setopts([IoDevice,] Opts) -&#62; ok | {error, Reason}</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Opts = [Opt]</CODE></STRONG><BR>
<STRONG><CODE>Opt = binary | list</CODE></STRONG><BR>
<STRONG><CODE>Reason = term()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Set options for standard input/output (<CODE>IoDevice</CODE>).
         Possible options are:
        
<P>
<DL>

<DT>
<CODE>binary</CODE>
</DT>

<DD>
         Makes <CODE>get_chars/2,3</CODE> and <CODE>get_line/1,2</CODE> return
         binaries instead of lists of chars.<BR>

         
</DD>

<DT>
<CODE>list</CODE>
</DT>

<DD>
         Makes <CODE>get_chars/2,3</CODE> and <CODE>get_line/1,2</CODE> return
         lists of chars, which is the default.<BR>

         
</DD>

<DT>
<CODE>expand_fun</CODE>
</DT>

<DD>
         Provide a function for tab-completion (expansion)
         like the erlang shell. This function is called
         when the user presses the Tab key. The expansion is
         active when calling line-reading functions such as
         <CODE>get_line/1,2</CODE>.<BR>

         The function is called with the current line, upto
         the cursor, as a reversed string. It should return a
         three-tuple: <CODE>{yes|no, string(), [string(), ...]}</CODE>. The
         first element gives a beep if <CODE>no</CODE>, otherwise the
         expansion is silent, the second is a string that will be
         entered at the cursor position, and the third is a list of
         possible expansions. If this list is non-empty, the list
         will be printed and the current input line will be written
         once again.<BR>

         Trivial example (beep on anything except empty line, which
         is expanded to &#34;quit&#34;):
         <BR>

<PRE>
 fun(&#34;&#34;) -&#62; {yes, &#34;quit&#34;, []};
    (_) -&#62; {no, &#34;&#34;, [&#34;quit&#34;]} end
              
</PRE>

         
</DD>

</DL>

<P>
<TABLE CELLPADDING=4>
  <TR>
    <TD VALIGN=TOP><IMG ALT="Note!" SRC="note.gif"></TD>
    <TD>

<P>The <CODE>binary</CODE> option does not work against IO servers
         on remote nodes running an older version of Erlang/OTP than
         R9C.    </TD>
  </TR>
</TABLE>

</DIV>

<P><A NAME="write/2"><STRONG><CODE>write([IoDevice,] Term) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Term = term()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Writes the term <CODE>Term</CODE> to the standard output
         (<CODE>IoDevice</CODE>).
</DIV>

<P><A NAME="read/2"><STRONG><CODE>read([IoDevice,] Prompt) -&#62; Result</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>Result = {ok, Term} | eof | {error, ErrorInfo}</CODE></STRONG><BR>
<STRONG><CODE>Term = term()</CODE></STRONG><BR>
<STRONG><CODE>ErrorInfo -- see section Error Information below</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads a term <CODE>Term</CODE> from the standard input
         (<CODE>IoDevice</CODE>), prompting it with <CODE>Prompt</CODE>. It
         returns:
<P>
<DL>

<DT>
<CODE>{ok, Term}</CODE>
</DT>

<DD>
         The parsing was successful.<BR>

         
</DD>

<DT>
<CODE>eof</CODE>
</DT>

<DD>
         End of file was encountered.<BR>

         
</DD>

<DT>
<CODE>{error, ErrorInfo}</CODE>
</DT>

<DD>
         The parsing failed.<BR>

         
</DD>

</DL>

</DIV>

<P><A NAME="read/3"><STRONG><CODE>read(IoDevice, Prompt, StartLine) -&#62; Result</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>StartLine = int()</CODE></STRONG><BR>
<STRONG><CODE>Result = {ok, Term, EndLine} | {eof, EndLine} | 
{error, ErrorInfo, EndLine}</CODE></STRONG><BR>
<STRONG><CODE>Term = term()</CODE></STRONG><BR>
<STRONG><CODE>EndLine = int()</CODE></STRONG><BR>
<STRONG><CODE>ErrorInfo -- see section Error Information below</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads a term <CODE>Term</CODE> from <CODE>IoDevice</CODE>, prompting it
         with <CODE>Prompt</CODE>. Reading starts at line number
         <CODE>StartLine</CODE>. It returns:
<P>
<DL>

<DT>
<CODE>{ok, Term, EndLine}</CODE>
</DT>

<DD>
         The parsing was successful.<BR>

         
</DD>

<DT>
<CODE>{eof, EndLine}</CODE>
</DT>

<DD>
         End of file was encountered.<BR>

         
</DD>

<DT>
<CODE>{error, ErrorInfo, EndLine}</CODE>
</DT>

<DD>
         The parsing failed.<BR>

         
</DD>

</DL>

</DIV>

<P><A NAME="fwrite/1"><STRONG><CODE>fwrite(Format) -&#62;</CODE></STRONG></A><BR>
<A NAME="fwrite/3"><STRONG><CODE>fwrite([IoDevice,] Format, Data) -&#62; ok</CODE></STRONG></A><BR>
<A NAME="format/1"><STRONG><CODE>format(Format) -&#62;</CODE></STRONG></A><BR>
<A NAME="format/3"><STRONG><CODE>format([IoDevice,] Format, Data) -&#62; ok</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Format = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>Data = [term()]</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Writes the items in <CODE>Data</CODE> (<CODE>[]</CODE>) on the standard
         output (<CODE>IoDevice</CODE>) in accordance with <CODE>Format</CODE>.
         <CODE>Format</CODE> contains plain characters which are copied to
         the output device, and control sequences for formatting, see
         below. If <CODE>Format</CODE> is an atom, it is first converted to
         a list with the aid of <CODE>atom_to_list/1</CODE>.
<PRE>
1&#62; <STRONG>io:fwrite(&#34;Hello world!~n&#34;, []).</STRONG>
Hello world!
ok
        
</PRE>

<P>The general format of a control sequence is <CODE>~F.P.PadC</CODE>.
         The character <CODE>C</CODE> determines the type of control sequence
         to be used, <CODE>F</CODE> and <CODE>P</CODE> are optional numeric
         arguments. If <CODE>F</CODE>, <CODE>P</CODE>, or <CODE>Pad</CODE> is <CODE>*</CODE>,
         the next argument in <CODE>Data</CODE> is used as the numeric value
         of <CODE>F</CODE> or <CODE>P</CODE>.
<P><CODE>F</CODE> is the <CODE>field width</CODE> of the printed argument. A
negative value means that the argument will be left justified
         within the field, otherwise it will be right justified. If no
         field width is specified, the required print width will be
         used. If the field width specified is too small, then the
         whole field will be filled with <CODE>*</CODE> characters.
<P><CODE>P</CODE> is the <CODE>precision</CODE> of the printed argument. A
         default value is used if no precision is specified. The
         interpretation of precision depends on the control sequences.
         Unless otherwise specified, the argument <CODE>within</CODE> is used
         to determine print width.
<P><CODE>Pad</CODE> is the padding character. This is the character
         used to pad the printed representation of the argument so that
         it conforms to the specified field width and precision. Only
         one padding character can be specified and, whenever
         applicable, it is used for both the field width and precision.
         The default padding character is <CODE>' '</CODE> (space).
<P>The following control sequences are available:
<P>
<DL>

<DT>
<CODE>~</CODE>
</DT>

<DD>
         The character <CODE>~</CODE> is written.<BR>

         
</DD>

<DT>
<CODE>c</CODE>
</DT>

<DD>
 The argument is a number that will be interpreted as an
         ASCII code. The precision is the number of times the
         character is printed and it defaults to the field width,
         which in turn defaults to 1. The following example
         illustrates:<BR>

         
<PRE>
2&#62; <STRONG>io:fwrite(&#34;|~10.5c|~-10.5c|~5c|~n&#34;, [$a, $b, $c]).</STRONG>
|     aaaaa|aaaaa     |ccccc|
ok
            
</PRE>


</DD>

<DT>
<CODE>f</CODE>
</DT>

<DD>
 The argument is a float which is written as
         <CODE>[-]ddd.ddd</CODE>, where the precision is the number of
digits after the decimal point. The default precision is 6
         and it cannot be less than 1.<BR>

         
</DD>

<DT>
<CODE>e</CODE>
</DT>

<DD>
 The argument is a float which is written as
         <CODE>[-]d.ddde+-ddd</CODE>, where the precision is the number
of digits written. The default precision is 6 and it
         cannot be less than 2.<BR>

         
</DD>

<DT>
<CODE>g</CODE>
</DT>

<DD>
 The argument is a float which is written as <CODE>f</CODE>, if
         it is &#62;= 0.1 and &#60; 10000.0. Otherwise, it is written
         in the <CODE>e</CODE> format. The precision is the number of
         significant digits. It defaults to 6 and should not be
         less than 2. If the absolute value of the float does not
         allow it to be written in the <CODE>f</CODE> format with the
         desired number of significant digits, it is also written
         in the <CODE>e</CODE> format.<BR>

         
</DD>

<DT>
<CODE>s</CODE>
</DT>

<DD>
 Prints the argument with the <CODE>string</CODE> syntax. The
         argument is an <A HREF="javascript:erlhref('../../../../', 'kernel', 'erlang.html#iolist_definition');">I/O
         list</A>, a binary, or an atom. The characters
         are printed without quotes. In this format, the printed
         argument is truncated to the given precision and field
         width.<BR>


         This format can be used for printing any object and
         truncating the output so it fits a specified field:<BR>

         
<PRE>
3&#62; <STRONG>io:fwrite(&#34;|~10w|~n&#34;, [{hey, hey, hey}]).</STRONG>
|**********|
ok
4&#62; <STRONG>io:fwrite(&#34;|~10s|~n&#34;, [io_lib:write({hey, hey, hey})]).</STRONG>
|{hey,hey,h|
ok
            
</PRE>


</DD>

<DT>
<CODE>w</CODE>
</DT>

<DD>
 Writes data with the standard syntax. This is used to
         output Erlang terms. Atoms are printed within quotes if
         they contain embedded non-printable characters, and floats
         are printed in the default <CODE>g</CODE> format.<BR>

         
</DD>

<DT>
<CODE>p</CODE>
</DT>

<DD>
 Writes the data with standard syntax in the same way as
<CODE>~w</CODE>, but breaks terms whose printed representation
is longer than one line into many lines and indents each
line sensibly. It also tries to detect lists of printable
         characters and to output these as strings. For example:
         <BR>

         
<PRE>
5&#62; <STRONG>T = [{attributes,[[{id,age,1.50000},{mode,explicit},</STRONG>
<STRONG>{typename,&#34;INTEGER&#34;}], [{id,cho},{mode,explicit},{typename,'Cho'}]]},</STRONG>
<STRONG>{typename,'Person'},{tag,{'PRIVATE',3}},{mode,implicit}].</STRONG>
...
6&#62; <STRONG>io:fwrite(&#34;~w~n&#34;, [T]).</STRONG>
[{attributes,[[{id,age,1.50000},{mode,explicit},{typename,
[73,78,84,69,71,69,82]}],[{id,cho},{mode,explicit},{typena
me,'Cho'}]]},{typename,'Person'},{tag,{'PRIVATE',3}},{mode
,implicit}]
ok
7&#62; <STRONG>io:fwrite(&#34;~p~n&#34;, [T]).</STRONG>
[{attributes,[[{id,age,1.50000},
               {mode,explicit},
               {typename,&#34;INTEGER&#34;}],
              [{id,cho},{mode,explicit},{typename,'Cho'}]]},
 {typename,'Person'},
 {tag,{'PRIVATE',3}},
 {mode,implicit}]
ok
            
</PRE>


The field width specifies the maximum line length. It
         defaults to 80. The precision specifies the initial
         indentation of the term. It defaults to the number of
         characters printed on this line in the <CODE>same</CODE> call to
         <CODE>io:fwrite</CODE> or <CODE>io:format</CODE>. For example, using
         <CODE>T</CODE> above:<BR>

         
<PRE>
8&#62; <STRONG>io:fwrite(&#34;Here T = ~p~n&#34;, [T]).</STRONG>
Here T = [{attributes,[[{id,age,1.50000},
                        {mode,explicit},
                        {typename,&#34;INTEGER&#34;}],
                       [{id,cho},{mode,explicit},
                        {typename,'Cho'}]]},
          {typename,'Person'},
          {tag,{'PRIVATE',3}},
          {mode,implicit}]
ok
            
</PRE>


</DD>

<DT>
<CODE>W</CODE>
</DT>

<DD>
 Writes data in the same way as <CODE>~w</CODE>, but takes an
         extra argument which is the maximum depth to which terms
         are printed. Anything below this depth is replaced with
         <CODE>...</CODE>. For example, using <CODE>T</CODE> above:<BR>

         
<PRE>
9&#62; <STRONG>io:fwrite(&#34;~W~n&#34;, [T,9]).</STRONG>
[{attributes,[[{id,age,1.50000},{mode,explicit},{typename|
...}],[{id,cho},{mode|...},{...}]]},{typename,'Person'},{t
ag,{'PRIVATE',3}},{mode,implicit}]
ok
            
</PRE>


If the maximum depth has been reached, then it is
         impossible to read in the resultant output. Also, the
<CODE>|...</CODE> form in a tuple denotes that there are more
elements in the tuple but these are below the print depth.
         <BR>

         
</DD>

<DT>
<CODE>P</CODE>
</DT>

<DD>
 Writes data in the same way as <CODE>~p</CODE>, but takes an
         extra argument which is the maximum depth to which terms
         are printed. Anything below this depth is replaced with
         <CODE>...</CODE>. For example:
         <BR>

         
<PRE>
10&#62; <STRONG>io:fwrite(&#34;~P~n&#34;, [T,9]).</STRONG>
[{attributes,[[{id,age,1.50000},{mode,explicit},
               {typename|...}],
              [{id,cho},{mode|...},{...}]]},
 {typename,'Person'},
 {tag,{'PRIVATE',3}},
 {mode,implicit}]
ok
            
</PRE>


</DD>

<DT>
<CODE>B</CODE>
</DT>

<DD>
         Writes an integer in base 2..36, the default base is
         10. A leading dash is printed for negative integers.
         <BR>
The precision field selects base. For example:<BR>

         
<PRE>
11&#62; <STRONG>io:format(&#34;~.16B~n&#34;, [31]).</STRONG>
1F
ok
12&#62; <STRONG>io:format(&#34;~.2B~n&#34;, [-19]).</STRONG>
-10011
ok
13&#62; <STRONG>io:format(&#34;~.36B~n&#34;, [5*36+35]).</STRONG>
5Z
ok
            
</PRE>

         
</DD>

<DT>
<CODE>X</CODE>
</DT>

<DD>
         Like <CODE>B</CODE>, but takes an extra argument that is a
         prefix to insert before the number, but after the leading
         dash, if any.<BR>

         The prefix can be a possibly deep list of characters or
         an atom.<BR>

         
<PRE>
14&#62; <STRONG>io:format(&#34;~X~n&#34;, [31,&#34;10#&#34;]).</STRONG>
10#31
ok
15&#62; <STRONG>io:format(&#34;~.16X~n&#34;, [-31,&#34;0x&#34;]).</STRONG>
-0x1F
ok
            
</PRE>

         
</DD>

<DT>
<CODE>#</CODE>
</DT>

<DD>
         Like <CODE>B</CODE>, but prints the number with an Erlang style
         '#'-separated base prefix.<BR>

         
<PRE>
16&#62; <STRONG>io:format(&#34;~.10#~n&#34;, [31]).</STRONG>
10#31
ok
17&#62; <STRONG>io:format(&#34;~.16#~n&#34;, [-31]).</STRONG>
-16#1F
ok
            
</PRE>

         
</DD>

<DT>
<CODE>b</CODE>
</DT>

<DD>
         Like <CODE>B</CODE>, but prints lowercase letters.<BR>

         
</DD>

<DT>
<CODE>x</CODE>
</DT>

<DD>
         Like <CODE>X</CODE>, but prints lowercase letters.<BR>

         
</DD>

<DT>
<CODE>+</CODE>
</DT>

<DD>
         Like <CODE>#</CODE>, but prints lowercase letters.<BR>

         
</DD>

<DT>
<CODE>n</CODE>
</DT>

<DD>
         Writes a new line.<BR>


</DD>

<DT>
<CODE>i</CODE>
</DT>

<DD>
         Ignores the next term.<BR>

         
</DD>

</DL>

<P>Returns:
<P>
<DL>

<DT>
<CODE>ok</CODE>
</DT>

<DD>
The formatting succeeded.<BR>

         
</DD>

</DL>

<P>If an error occurs, there is no output. For example:
<PRE>
18&#62; <STRONG>io:fwrite(&#34;~s ~w ~i ~w ~c ~n&#34;,['abc def', 'abc def', {foo, 1},{foo, 1}, 65]).</STRONG>
abc def 'abc def'  {foo, 1} A
ok
19&#62; <STRONG>io:fwrite(&#34;~s&#34;, [65]).</STRONG>
** exited: {badarg,[{io,format,[&#60;0.22.0&#62;,&#34;~s&#34;,&#34;A&#34;]},
                    {erl_eval,do_apply,5},
                    {shell,exprs,6},
                    {shell,eval_loop,2}]} **
        
</PRE>

<P>In this example, an attempt was made to output the single
         character '65' with the aid of the string formatting directive
         &#34;~s&#34;.
<P>The two functions <CODE>fwrite</CODE> and <CODE>format</CODE> are
identical. The old name <CODE>format</CODE> has been retained for
backwards compatibility, while the new name <CODE>fwrite</CODE> has
been added as a logical complement to <CODE>fread</CODE>.
</DIV>

<P><A NAME="fread/3"><STRONG><CODE>fread([IoDevice,] Prompt, Format) -&#62; Result</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>Format = string()</CODE></STRONG><BR>
<STRONG><CODE>Result = {ok, Terms} | eof | {error, What}</CODE></STRONG><BR>
<STRONG><CODE>Terms = [term()]</CODE></STRONG><BR>
<STRONG><CODE>What = term()</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads characters from the standard input (<CODE>IoDevice</CODE>),
prompting it with <CODE>Prompt</CODE>. Interprets the characters in
accordance with <CODE>Format</CODE>. <CODE>Format</CODE> contains control
         sequences which directs the interpretation of the input.
<P><CODE>Format</CODE> may contain:
<P>
<UL>

<LI>
 White space characters (SPACE, TAB and NEWLINE) which
cause input to be read to the next non-white space
character.<BR>

         
</LI>


<LI>
 Ordinary characters which must match the next input
         character.<BR>

         
</LI>


<LI>
 Control sequences, which have the general format
         <CODE>~*FC</CODE>. The character <CODE>*</CODE> is an optional return
         suppression character. It provides a method to specify a
         field which is to be omitted. <CODE>F</CODE> is the <CODE>field
                width</CODE> of the input field and <CODE>C</CODE> determines the
         type of control sequence.<BR>


         Unless otherwise specified, leading white-space is
         ignored for all control sequences. An input field cannot
         be more than one line wide. The following control
         sequences are available:<BR>

         
<DL>

<DT>
<CODE>~</CODE>
</DT>

<DD>
                A single <CODE>~</CODE> is expected in the input.<BR>

         
</DD>

<DT>
<CODE>d</CODE>
</DT>

<DD>
                A decimal integer is expected.<BR>

         
</DD>

<DT>
<CODE>u</CODE>
</DT>

<DD>
                An unsigned integer in base 2..36 is expected. The
                 field width parameter is used to specify base. Leading
                 white-space characters are not skipped.<BR>

         
</DD>

<DT>
<CODE>-</CODE>
</DT>

<DD>
                An optional sign character is expected. A sign
                 character '-' gives the return value <CODE>-1</CODE>. Sign
                 character '+' or none gives <CODE>1</CODE>. The field width
                 parameter is ignored. Leading white-space characters
                 are not skipped.<BR>

         
</DD>

<DT>
<CODE>#</CODE>
</DT>

<DD>
                An integer in base 2..36 with Erlang-style base
                 prefix (for example <CODE>&#34;16#ffff&#34;</CODE>) is expected.<BR>

         
</DD>

<DT>
<CODE>f</CODE>
</DT>

<DD>
 A floating point number is expected. It must follow
the Erlang floating point number syntax.<BR>

         
</DD>

<DT>
<CODE>s</CODE>
</DT>

<DD>
 A string of non-white-space characters is read. If a
                 field width has been specified, this number of
                 characters are read and all trailing white-space
characters are stripped. An Erlang string (list of
characters) is returned.<BR>

         
</DD>

<DT>
<CODE>a</CODE>
</DT>

<DD>
 Similar to <CODE>s</CODE>, but the resulting string is
converted into an atom.<BR>

         
</DD>

<DT>
<CODE>c</CODE>
</DT>

<DD>
 The number of characters equal to the field width are
                 read (default is 1) and returned as an Erlang string.
                 However, leading and trailing white-space characters
                 are not omitted as they are with <CODE>s</CODE>. All
                 characters are returned.<BR>

         
</DD>

<DT>
<CODE>l</CODE>
</DT>

<DD>
 Returns the number of characters which have been
                 scanned up to that point, including white-space
                 characters.<BR>

         
</DD>

</DL>


It returns:<BR>

         
<DL>

<DT>
<CODE>{ok, Terms}</CODE>
</DT>

<DD>
 The read was successful and <CODE>Terms</CODE> is the list
                 of successfully matched and read items.<BR>

         
</DD>

<DT>
<CODE>eof</CODE>
</DT>

<DD>
                End of file was encountered.<BR>

         
</DD>

<DT>
<CODE>{error, What}</CODE>
</DT>

<DD>
 The read operation failed and the parameter
                 <CODE>What</CODE> gives a hint about the error.<BR>

         
</DD>

</DL>

         
</LI>


</UL>

<P>Examples:
<PRE>
20&#62; <STRONG>io:fread('enter&#62;', &#34;~f~f~f&#34;).</STRONG>
enter&#62;<STRONG>1.9 35.5e3 15.0</STRONG>
{ok,[1.90000,3.55000e+4,15.0000]}
21&#62; <STRONG>io:fread('enter&#62;', &#34;~10f~d&#34;).</STRONG>
enter&#62;     <STRONG>5.67899</STRONG>
{ok, [5.67800, 99]}
22&#62; <STRONG>io:fread('enter&#62;', &#34;:~10s:~10c:&#34;).</STRONG>
enter&#62;<STRONG>:</STRONG>   <STRONG>alan</STRONG>   <STRONG>:</STRONG>   <STRONG>joe</STRONG>    <STRONG>:</STRONG>
{ok, [&#34;alan&#34;, &#34;   joe    &#34;]}
        
</PRE>

</DIV>

<P><A NAME="scan_erl_exprs/1"><STRONG><CODE>scan_erl_exprs(Prompt) -&#62;</CODE></STRONG></A><BR>
<A NAME="scan_erl_exprs/3"><STRONG><CODE>scan_erl_exprs([IoDevice,] Prompt, StartLine) -&#62; Result
</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>StartLine = int()</CODE></STRONG><BR>
<STRONG><CODE>Result = {ok, Tokens, EndLine} | {eof, EndLine} |
         {error, ErrorInfo, EndLine}</CODE></STRONG><BR>
<STRONG><CODE>Tokens -- see erl_scan(3)</CODE></STRONG><BR>
<STRONG><CODE>EndLine = int()</CODE></STRONG><BR>
<STRONG><CODE>ErrorInfo -- see section Error Information below</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads data from the standard input (<CODE>IoDevice</CODE>),
prompting it with <CODE>Prompt</CODE>. Reading starts at line number
<CODE>StartLine</CODE> (1). The data is tokenized as if it were a
         sequence of Erlang expressions until a final <CODE>'.'</CODE> is
         reached. This token is also returned. It returns:
<P>
<DL>

<DT>
<CODE>{ok, Tokens, EndLine}</CODE>
</DT>

<DD>
         The tokenization succeeded.<BR>

         
</DD>

<DT>
<CODE>{eof, EndLine}</CODE>
</DT>

<DD>
         End of file was encountered.<BR>

         
</DD>

<DT>
<CODE>{error, ErrorInfo, EndLine}</CODE>
</DT>

<DD>
         An error occurred.<BR>

         
</DD>

</DL>

<P>Example:
<PRE>
23&#62; <STRONG>io:scan_erl_exprs('enter&#62;').</STRONG>
enter&#62;<STRONG>abc(), &#34;hey&#34;.</STRONG>
{ok,[{atom,1,abc},{'(',1},{')',1},{',',1},{string,1,&#34;hey&#34;},{dot,1}],2}
24&#62; <STRONG>io:scan_erl_exprs('enter&#62;').</STRONG>
enter&#62;<STRONG>1.0er.</STRONG>
{error,{1,erl_scan,{illegal,float}},2}
        
</PRE>

</DIV>

<P><A NAME="scan_erl_form/1"><STRONG><CODE>scan_erl_form(Prompt) -&#62;</CODE></STRONG></A><BR>
<A NAME="scan_erl_form/3"><STRONG><CODE>scan_erl_form([IoDevice,] Prompt, StartLine) -&#62; Result
</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>StartLine = int()</CODE></STRONG><BR>
<STRONG><CODE>Result = {ok, Tokens, EndLine} | {eof, EndLine} |
         {error, ErrorInfo, EndLine}</CODE></STRONG><BR>
<STRONG><CODE>Tokens -- see erl_scan(3)</CODE></STRONG><BR>
<STRONG><CODE>EndLine = int()</CODE></STRONG><BR>
<STRONG><CODE>ErrorInfo -- see section Error Information below</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads data from the standard input (<CODE>IoDevice</CODE>),
prompting it with <CODE>Prompt</CODE>. Starts reading at line number
<CODE>StartLine</CODE> (1). The data is tokenized as if it were an
         Erlang form - one of the valid Erlang expressions in an
         Erlang source file - until a final <CODE>'.'</CODE> is reached.
         This last token is also returned. The return values are the
         same as for <CODE>scan_erl_exprs/1,2,3</CODE> above.
</DIV>

<P><A NAME="parse_erl_exprs/1"><STRONG><CODE>parse_erl_exprs(Prompt) -&#62;</CODE></STRONG></A><BR>
<A NAME="parse_erl_exprs/3"><STRONG><CODE>parse_erl_exprs([IoDevice,] Prompt, StartLine) -&#62; Result
</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>StartLine = int()</CODE></STRONG><BR>
<STRONG><CODE>Result = {ok, Expr_list, EndLine} | {eof, EndLine} |
         {error, ErrorInfo, EndLine}</CODE></STRONG><BR>
<STRONG><CODE>Expr_list -- see erl_parse(3)</CODE></STRONG><BR>
<STRONG><CODE>EndLine = int()</CODE></STRONG><BR>
<STRONG><CODE>ErrorInfo -- see section Error Information below</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads data from the standard input (<CODE>IoDevice</CODE>),
         prompting it with <CODE>Prompt</CODE>. Starts reading at line number
<CODE>StartLine</CODE> (1). The data is tokenized and parsed as if
         it were a sequence of Erlang expressions until a final '.' is
         reached. It returns:
<P>
<DL>

<DT>
<CODE>{ok, Expr_list, EndLine}</CODE>
</DT>

<DD>
         The parsing was successful.<BR>

         
</DD>

<DT>
<CODE>{eof, EndLine}</CODE>
</DT>

<DD>
         End of file was encountered.<BR>

         
</DD>

<DT>
<CODE>{error, ErrorInfo, EndLine}</CODE>
</DT>

<DD>
         An error occurred.<BR>

         
</DD>

</DL>

<P>Example:
<PRE>
25&#62; <STRONG>io:parse_erl_exprs('enter&#62;').</STRONG>
enter&#62;<STRONG>abc(), &#34;hey&#34;.</STRONG>
{ok, [{call,1,{atom,1,abc},[]},{string,1,&#34;hey&#34;}],2}
26&#62; <STRONG>io:parse_erl_exprs ('enter&#62;').</STRONG>
enter&#62;<STRONG>abc(&#34;hey&#34;.</STRONG>
{error,{1,erl_parse,[&#34;syntax error before: &#34;,[&#34;'.'&#34;]]},2}
        
</PRE>

</DIV>

<P><A NAME="parse_erl_form/1"><STRONG><CODE>parse_erl_form(Prompt) -&#62;</CODE></STRONG></A><BR>
<A NAME="parse_erl_form/3"><STRONG><CODE>parse_erl_form([IoDevice,] Prompt, StartLine) -&#62; Result
</CODE></STRONG></A><BR>

<DIV CLASS=REFBODY><P>Types:
  <DIV CLASS=REFTYPES>
<P>
<STRONG><CODE>IoDevice = io_device()</CODE></STRONG><BR>
<STRONG><CODE>Prompt = atom() | string()</CODE></STRONG><BR>
<STRONG><CODE>StartLine = int()</CODE></STRONG><BR>
<STRONG><CODE>Result = {ok, AbsForm, EndLine} | {eof, EndLine} |
         {error, ErrorInfo, EndLine}</CODE></STRONG><BR>
<STRONG><CODE>AbsForm -- see erl_parse(3)</CODE></STRONG><BR>
<STRONG><CODE>EndLine = int()</CODE></STRONG><BR>
<STRONG><CODE>ErrorInfo -- see section Error Information below</CODE></STRONG><BR>

  </DIV>
</DIV>

<DIV CLASS=REFBODY>

<P>Reads data from the standard input (<CODE>IoDevice</CODE>),
prompting it with <CODE>Prompt</CODE>. Starts reading at line number
<CODE>StartLine</CODE> (1). The data is tokenized and parsed as if
         it were an Erlang form - one of the valid Erlang expressions
         in an Erlang source file - until a final '.' is reached. It
         returns:
<P>
<DL>

<DT>
<CODE>{ok, AbsForm, EndLine}</CODE>
</DT>

<DD>
         The parsing was successful.<BR>

         
</DD>

<DT>
<CODE>{eof, EndLine}</CODE>
</DT>

<DD>
         End of file was encountered.<BR>

         
</DD>

<DT>
<CODE>{error, ErrorInfo, EndLine}</CODE>
</DT>

<DD>
         An error occurred.<BR>

         
</DD>

</DL>

</DIV>

<H3>Standard Input/Output</H3>
<DIV CLASS=REFBODY>

<P>All Erlang processes have a default standard IO device. This
device is used when no <CODE>IoDevice</CODE> argument is specified in
the above function calls. However, it is sometimes desirable to
use an explicit <CODE>IoDevice</CODE> argument which refers to the
default IO device. This is the case with functions that can
access either a file or the default IO device. The atom
<CODE>standard_io</CODE> has this special meaning. The following example
illustrates this:
<PRE>
27&#62; <STRONG>io:read('enter&#62;').</STRONG>
enter&#62;<STRONG>foo.</STRONG>
{ok,foo}
28&#62; <STRONG>io:read(standard_io, 'enter&#62;').</STRONG>
enter&#62;<STRONG>bar.</STRONG>
{ok,bar}
    
</PRE>

<P>There is always a process registered under the name of
<CODE>user</CODE>. This can be used for sending output to the user.
</DIV>

<H3>Error Information</H3>
<DIV CLASS=REFBODY>

<P>The <CODE>ErrorInfo</CODE> mentioned above is the standard
<CODE>ErrorInfo</CODE> structure which is returned from all IO modules.
It has the format:
<PRE>
{ErrorLine, Module, ErrorDescriptor}
    
</PRE>

<P>A string which describes the error is obtained with the following
call:
<PRE>
apply(Module, format_error, ErrorDescriptor)
    
</PRE>

</DIV>

<H3>AUTHORS</H3>
<DIV CLASS=REFBODY>
Robert Virding - support@erlang.ericsson.se<BR>

</DIV>
<CENTER>
<HR>
<SMALL>stdlib 1.14.2<BR>
Copyright &copy; 1991-2006
<A HREF="http://www.erlang.se">Ericsson AB</A><BR>
</SMALL>
</CENTER>
</BODY>
</HTML>