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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<!-- This document was generated using DocBuilder 3.3.2 -->
<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 I/O 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. In the
following description, a parameter within square brackets means
that that parameter is optional. <CODE>[IoDevice,]</CODE> is such an
example. If included, it must be the Pid of a process which
handles the IO protocols. This is often the <CODE>IoDevice</CODE>
returned by <CODE>file:open/2</CODE> (see <CODE>file</CODE>). For a
description of the I/O 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>EXPORTS</H3>
<P><A NAME="put_chars/2"><STRONG><CODE>put_chars([IoDevice,] Chars)</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Writes the characters <CODE>Chars</CODE> to the standard output
(<CODE>IoDevice</CODE>). <CODE>Chars</CODE> is a list of
characters. The list is not necessarily flat.
</DIV>
<P><A NAME="nl/1"><STRONG><CODE>nl([IoDevice])</CODE></STRONG></A><BR>
<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)</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Gets <CODE>Count</CODE> characters from standard input
(<CODE>IoDevice</CODE>), prompting it with <CODE>Prompt</CODE>. It returns:
<P>
<DL>
<DT>
<CODE>ListOfChars</CODE>
</DT>
<DD>
Returns the input characters, if they are less than
<CODE>Count</CODE>.
<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)</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Gets a line from the standard input (<CODE>IoDevice</CODE>),
prompting it with <CODE>Prompt</CODE>. It returns:
<P>
<DL>
<DT>
<CODE>ListOfChars</CODE>
</DT>
<DD>
The characters in the line terminated by a LF unless
the line read was the last line of the file and was not
terminated by LF.
<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,] OptList)</CODE></STRONG></A><BR>
<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>
</DL>
<P>Returns <CODE>ok</CODE> if succesful or <CODE>{error,Reason}</CODE> if not.
<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 I/O
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)</CODE></STRONG></A><BR>
<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)</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Reads a term 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>{error, ErrorInfo}</CODE>
</DT>
<DD>
The parsing failed.
<BR>
</DD>
<DT>
<CODE>eof</CODE>
</DT>
<DD>
End of file was encountered.
<BR>
</DD>
</DL>
</DIV>
<P><A NAME="fwrite/1"><STRONG><CODE>fwrite(Format)</CODE></STRONG></A><BR>
<A NAME="format/1"><STRONG><CODE>format(Format)</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Equivalent to <CODE>fwrite(Format, [])</CODE>.
</DIV>
<P><A NAME="fwrite/3"><STRONG><CODE>fwrite([IoDevice,] Format, Arguments)</CODE></STRONG></A><BR>
<A NAME="format/3"><STRONG><CODE>format([IoDevice,] Format, Arguments)</CODE></STRONG></A><BR>
<DIV CLASS=REFBODY>
<P>Writes the list of items in <CODE>Arguments</CODE> on the standard output (<CODE>IoDevice</CODE>) in accordance
with <CODE>Format</CODE>. <CODE>Format</CODE> is a list of plain characters which are copied to the output device, and control sequences which cause the arguments to be printed. If <CODE>Format</CODE> is an atom, it is first converted to a list with the aid of <CODE>atom_to_list/1</CODE>.
<CODE>Arguments</CODE> is the list of items to be printed.
<PRE>
> io:fwrite("Hello world!~n", []).
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>Arguments</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 one. The following
example illustrates:<BR>
<PRE>
> io:fwrite("|~10.5c|~-10.5c|~5c|~n", [$a, $b, $c]).
| 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.
<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.
<BR>
</DD>
<DT>
<CODE>g</CODE>
</DT>
<DD>
The argument is a float which is written as <CODE>f</CODE>, if
it is > 0.1, and < 10^4. Otherwise, it is written as
<CODE>e</CODE>. The precision is the number of significant
digits. It defaults to 6. There must always be a
sufficient number of digits for printing a correct
floating point representation of the argument.
<BR>
</DD>
<DT>
<CODE>s</CODE>
</DT>
<DD>
Prints the argument with the <CODE>string</CODE> syntax. The
argument is a list of character codes (possibly not a flat list), 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>
> io:fwrite("|~10w|~n", [{hey, hey, hey}]).
|**********|
ok
> io:fwrite("|~10s|~n", [io_lib:write({hey, hey, hey})]).
|{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>
> T = [{attributes,[[{id,age,1.50000},{mode,explicit},
{typename,"INTEGER"}],
[{id,cho},{mode,explicit},{typename,'Cho'}]]},
{typename,'Person'},{tag,{'PRIVATE',3}},
{mode,implicit}].
...
> io:fwrite("~w~n", [T]).
[{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
> io:fwrite("~p~n", [T]).
[{attributes,[[{id,age,1.50000},
{mode,explicit},
{typename,"INTEGER"}],
[{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>
> io:fwrite("Here T = ~p~n", [T]).
Here T = [{attributes,[[{id,age,1.50000},
{mode,explicit},
{typename,"INTEGER"}],
[{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>
> io:fwrite("~W~n", [T,9]).
[{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>
> io:fwrite("~P~n", [T,9]).
[{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>
>io:format("~.16B~n", [31]).
1F
ok
>io:format("~.2B~n", [-19]).
-10011
ok
>io:format("~.36B~n", [5*36+35]).
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 character
codes or an atom.
<BR>
<PRE>
>io:format("~X~n", [31,"10#"]).
10#31
ok
>io:format("~.16X~n", [-31,"0x"]).
-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>
>io:format("~.10#~n", [31]).
10#31
ok
>io:format("~.16#~n", [-31]).
-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>
> io:fwrite("~s ~w ~i ~w ~c ~n",['abc def', 'abc def',
{foo, 1},{foo, 1}, 65]).
abc def 'abc def' {foo, 1} A
ok
> io:fwrite("~s", [65]).
** exited: {badarg,[{io,format,[<0.20.0>,"~s","A"]},
{erl_eval,expr,4},
{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 "~s".
<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)</CODE></STRONG></A><BR>
<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> is a list of
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>"16#ffff"</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, InputList}</CODE>
</DT>
<DD>
The read was successful and <CODE>InputList</CODE> is the
list of successfully matched and read items.
<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>
<DT>
<CODE>eof</CODE>
</DT>
<DD>
End of file was encountered.
<BR>
</DD>
</DL>
</LI>
</UL>
<P>Examples:
<PRE>
> io:fread('enter>', "~f~f~f").
enter>1.9 35.5e3 15.0
{ok, [1.90000, 3.55000e+4, 15.0000]}
> io:fread('enter>', "~10f~d").
enter> 5.67899
{ok, [5.67800, 99]}
> io:fread('enter>', ":~10s:~10c:").
enter>: alan : joe :
{ok, ["alan", " joe "]}
</PRE>
</DIV>
<P><A NAME="scan_erl_exprs/1"><STRONG><CODE>scan_erl_exprs(Prompt)</CODE></STRONG></A><BR>
<A NAME="scan_erl_exprs/3"><STRONG><CODE>scan_erl_exprs([IoDevice,] Prompt, StartLine)</CODE></STRONG></A><BR>
<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>{error, ErrorInfo, EndLine}</CODE>
</DT>
<DD>
An error occurred.
<BR>
</DD>
<DT>
<CODE>{eof, EndLine}</CODE>
</DT>
<DD>
End of file was encountered.
<BR>
</DD>
</DL>
<P>Example:
<PRE>
> io:scan_erl_exprs('enter>').
enter>abc(), "hey".
{ok,[{atom, 1, abc},{'(', 1}, {')', 1}, {', ', 1},
{string, 1, "hey"}, {dot, 1}], 2}
> io:scan_erl_exprs('enter>').
enter>1.0er.
{error, {1, erl_scan, float}, 2}
</PRE>
</DIV>
<P><A NAME="scan_erl_form/1"><STRONG><CODE>scan_erl_form(Prompt)</CODE></STRONG></A><BR>
<A NAME="scan_erl_form/3"><STRONG><CODE>scan_erl_form(IoDevice, Prompt[, StartLine])</CODE></STRONG></A><BR>
<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</CODE>.
</DIV>
<P><A NAME="parse_erl_exprs/1"><STRONG><CODE>parse_erl_exprs(Prompt)</CODE></STRONG></A><BR>
<A NAME="parse_erl_exprs/3"><STRONG><CODE>parse_erl_exprs(IoDevice, Prompt[, StartLine])</CODE></STRONG></A><BR>
<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
<CODE>'.'</CODE> is reached. It returns:
<P>
<DL>
<DT>
<CODE>{ok, ExpressionList, EndLine}</CODE>
</DT>
<DD>
The parsing was successful.
<BR>
</DD>
<DT>
<CODE>{error, ErrorInfo, EndLine}</CODE>
</DT>
<DD>
An error occurred.
<BR>
</DD>
<DT>
<CODE>{eof, EndLine}</CODE>
</DT>
<DD>
End of file was encountered.<BR>
</DD>
</DL>
<P>Example:
<PRE>
> io:parse_erl_exprs('enter>').
enter>abc(), "hey".
{ok, [{call, 1, [], abc, []}, {string, 1, "hey"}], 2}
> io:parse_erl_exprs ('enter>').
enter>abc("hey".
{error, {1, erl_parse, {before, {terminator,') '}, {dot, 1}}}, 2}
</PRE>
</DIV>
<P><A NAME="parse_erl_form/1"><STRONG><CODE>parse_erl_form(Prompt)</CODE></STRONG></A><BR>
<A NAME="parse_erl_form/3"><STRONG><CODE>parse_erl_form(IoDevice, Prompt[, StartLine])</CODE></STRONG></A><BR>
<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
<CODE>'.'</CODE> is reached. It returns:
<P>
<DL>
<DT>
<CODE>{ok, Form, EndLine}</CODE>
</DT>
<DD>
The parsing was successful.
<BR>
</DD>
<DT>
<CODE>{error, ErrorInfo, EndLine}</CODE>
</DT>
<DD>
An error occurred.
<BR>
</DD>
<DT>
<CODE>{eof, EndLine}</CODE>
</DT>
<DD>
End of file was encountered.
<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 IO
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>
> io:read('enter>').
enter>foo.
{term, foo}
> io:read(standard_io, 'enter>').
enter>bar.
{term, 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 following 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.13.2<BR>
Copyright © 1991-2004
<A HREF="http://www.erlang.se">Ericsson AB</A><BR>
</SMALL>
</CENTER>
</BODY>
</HTML>
|