File: read.rst

package info (click to toggle)
neuron 8.2.6-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 34,768 kB
  • sloc: cpp: 149,571; python: 58,449; ansic: 50,329; sh: 3,510; xml: 213; pascal: 51; makefile: 35; sed: 5
file content (144 lines) | stat: -rw-r--r-- 4,224 bytes parent folder | download | duplicates (3)
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

.. _hoc_read:

Read from Terminal and Files
----------------------------



.. hoc:function:: xred


    Syntax:
        ``var = xred(promptstring, default, min, max)``


    Description:
        ``Xred()`` reads a value from the standard input after printing *promptstring* 
        on the console.  The value read must be in the range *min* <= *val* <= *max* and 
        the user will be prompted to enter another number if the value is not in 
        that range.  If the user types the :kbd:`Return` key, the *default* value is used 
        (if it is in the valid range). 


----



.. hoc:function:: getstr


    Syntax:
        ``getstr(strvar)``

        ``getstr(strvar, 1)``


    Description:
        ``Getstr()`` reads a string up to and including the next newline from the file 
        opened with the :hoc:meth:`~File.ropen` command (or the currently executing file or
        the standard input) and places it 
        in its string variable argument. With a second arg equal to 1, getstr reads 
        a single word starting at the next non-whitespace character up to 
        but not including the following whitespace (similar to fscan). 

    .. seealso::
        :hoc:class:`StringFunctions`, :hoc:func:`sscanf`, :hoc:class:`File`


----



.. hoc:function:: sred


    Syntax:
        ``index = sred(prompt, defaultchar, charlist)``


    Description:
        ``sred()`` reads a character typed on the standard input after printing the 
        first argument followed by the default character. The user is required to 
        enter one of the characters in the character list (or return if the default 
        happens to be one of these characters). The function returns the index in 
        the character list of the character typed. The index of the first character 
        is 0. The character accepted becomes the next default when this statement 
        is executed again. This function was contributed by Stewart Jaslove. 

    Example:

        .. code-block::
            none

            i = sred("Shall we?", "y", "ny") 
            if (i == 0) print "No" else print "yes" 



----



.. hoc:function:: fscan


    Syntax:
        ``var = fscan()``


    Description:
        ``fscan()`` reads the next number from the file opened with the :hoc:meth:`~File.ropen`
        command. If no file is opened the number is read from the currently 
        executing file. If no file is being executed the number is read from 
        the standard input. 
        A number is scanned as long as it begins with a digit, decimal point, or 
        sign.  There can be more than one number per line but they must be set 
        apart from each other by spaces or tabs.  Strings that can't be scanned 
        into numbers are skipped. 

    Example:
        Suppose in response to the HOC command: ``print fscan(), fscan()`` 
        the user types: ``this is a number 1.3e4 this is not45 this is 25`` 
        Then HOC will print: ``13000 25`` 
         

        .. code-block::
            none

            while(1) print fscan() 
             
            notice that when no file is open, fscan scans the remainder of the hoc file 
            following only scans the numbers from 10 to 170 
            10 
            n 
            20 
            n 30 na 40 nan 50 nano 60 nanotube 70 ni 80 nai 90 Nan NaN 
             
            i 100 in 110 inf 120 infi 130 ib 140 inc 150 infinity 160 170 Inf INF 
             
            following scans the numbers 
            1 2 3 4 5 6 7 8 9 10 
            - + does not scan 
             
            1.1 -1.2 1.3e-4 1.4e+4 -1.5e5 -1.6e-1 
             
            1+2+3 scans just the "1" 
            4xxx5 scans just the "4" 
             
            1,2,3 scans just the "1" 
            3, 4, 5 scans the three numbers 
             
            now there will be an EOF error 
             


    Diagnostics:
        ``Fscan()`` and ``getstr()`` returns to the HOC 
        interpreter with a run-time error on EOF. 
         

    .. seealso::
        :hoc:meth:`File.scanvar`, :ref:`read <hoc_keyword_read>`, :hoc:meth:`File.ropen`, :hoc:func:`File`, :hoc:func:`sscanf`, :hoc:class:`StringFunctions`, :hoc:func:`getstr`