modified: diffout.py
[GalaxyCodeBases.git] / c_cpp / etc / calc / help / strscan
blobdfae7a6f2c9da9b15dfd855fae34fcd4000b422d
1 NAME
2    strscan - scan a string for possible assignment to variables
4 SYNOPSIS
5    strscan(str, x_1, x_2, ..., x_n)
7 TYPES
8     str                 string
9     x_1, x_2, ...       any
11     return              integer
13 DESCRIPTION
14    Successive fields of str separated by white space are read and
15    evaluated so long as values remain in the x_i arguments;  when the
16    x_i corresponding to the field is an lvalue the value obtained for the
17    i-th field is assigned to x_i.
19    The function returns the number of fields evaluated.
21 EXAMPLE
22     global a,b
23     ; strscan(" 2+3  a^2  print(b)", a, b, 0);
24     25
25         3
26     ; print a,b
27     5 25
29 LIMITS
30     The number of arguments is not to exceed 1024.
32 LINK LIBRARY
33     none
35 SEE ALSO
36     strcat, strcpy, strerror, strlen, strncmp, strncpy, strpos,
37     strprintf, strscanf, substr
39 ## Copyright (C) 1999-2006  Ernest Bowen
41 ## Calc is open software; you can redistribute it and/or modify it under
42 ## the terms of the version 2.1 of the GNU Lesser General Public License
43 ## as published by the Free Software Foundation.
45 ## Calc is distributed in the hope that it will be useful, but WITHOUT
46 ## ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
47 ## or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General
48 ## Public License for more details.
50 ## A copy of version 2.1 of the GNU Lesser General Public License is
51 ## distributed with calc under the filename COPYING-LGPL.  You should have
52 ## received a copy with calc; if not, write to Free Software Foundation, Inc.
53 ## 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
55 ## @(#) $Revision: 30.1 $
56 ## @(#) $Id: strscan,v 30.1 2007/03/16 11:10:42 chongo Exp $
57 ## @(#) $Source: /usr/local/src/cmd/calc/help/RCS/strscan,v $
59 ## Under source code control:   1996/04/30 03:05:18
60 ## File existed as early as:    1996
62 ## chongo <was here> /\oo/\     http://www.isthe.com/chongo/
63 ## Share and enjoy!  :-)        http://www.isthe.com/chongo/tech/comp/calc/