|
NAMEString::Scanf - emulate sscanf() of the C librarySYNOPSISuse String::Scanf; # imports sscanf() ($a, $b, $c, $d) = sscanf("%d+%d %f-%s", $input); ($e, $f, $g, $h) = sscanf("%x %o %s:%3c"); # input defaults to $_ $r = String::Scanf::format_to_re($f); or # works only for Perl 5.005 use String::Scanf qw(); # import nothing my $s1 = String::Scanf->new("%d+%d %f-%s"); my $s2 = String::Scanf->new("%x %o %s:%3c"); ($a, $b, $c, $d) = $s1->sscanf($input); ($e, $f, $g, $h) = $s2->sscanf(); # input defaults to $_ DESCRIPTIONString::Scanf supports scanning strings for data using formats similar to the libc/stdio sscanf().The supported sscanf() formats are as follows:
The sscanf() formats [pnSC] are not supported. The %s and %c have an optional maximum width, e.g. %4s, in which case at most so many characters are consumed (but fewer characters are also accecpted). The numeric formats may also have such a width but it is ignored. The numeric formats may have "[hl" before the main option, e.g. %hd, but since such widths have no meaning in Perl, they are ignored. Non-format parts of the parameter string are matched literally (e.g. ":" matches as ":"), expect that any whitespace is matched as any whitespace (e.g. " " matches as "\s+"). WARNINGThe numeric formats match only something that looks like a number, they do not care whether it fits into the numbers of Perl. In other words, 123e456789 is valid for "sscanf()", but quite probably it won't fit into your Perl's numbers. Consider using the various Math::* modules instead.AUTHOR, COPYRIGHT AND LICENSEJarkko Hietaniemi <jhi@iki.fi>Copyright (c) 2002 Jarkko Hietaniemi. All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.
Visit the GSP FreeBSD Man Page Interface. |