GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Video::DVDRip::CPAN::Scanf(3) User Contributed Perl Documentation Video::DVDRip::CPAN::Scanf(3)

String::Scanf - emulate sscanf() of the C library

    use 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 $_

String::Scanf supports scanning strings for data using formats similar to the libc/stdio sscanf().

The supported sscanf() formats are as follows:

%d
Decimal integer, with optional plus or minus sign.
%u
Decimal unsigned integer, with optional plus sign.
%x
Hexadecimal unsigned integer, with optional "0x" or "0x" in front.
%o
Octal unsigned integer.
%e %f %g
(The [efg] work identically.)

Decimal floating point number, with optional plus or minus sign, in any of these formats:

    1
    1.
    1.23
    .23
    1e45
    1.e45
    1.23e45
    .23e45
    

The exponent has an optional plus or minus sign, and the "e" may also be "E".

The various borderline cases like "Inf" and "Nan" are not recognized.

%s
A non-whitespace string.
%c
A string of characters. An array reference is returned containing the numerical values of the characters.
%%
A literal "%".

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+").

The 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.

Jarkko 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.

2009-02-28 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.