sscanf

Reads a data from a string with a given format.

extern (C) nothrow @nogc pragma(scanf) extern @trusted pure
int
sscanf
(
const(char)* s
,
const(char)* format
,)

Parameters

s const(char)*

The input string.

format const(char)*

The format string. ... = Arguments following format.

Return Value

Type: int

The amount of items successfully filled.

Meta