The sscanf Function in PHP PRO

This function allows us to extract values from a string that applies a specific pattern. Each place holder (e.g. %s) refers a specific value in our string. Each value that matches a specific place holder is assigned to a variable. We should pass over our variable to be assigned by the values that match the place holders.

<?php
$stra = "38\t\tMichael Abelski";
$strb = "42\t\tmoshkico caramel";
$vec = sscanf($stra, "%d\t\t%s %s", $age, $first, $last);
echo "age=$age first=$first last=$last";
?>

The following short video clip shows the execution of this code sample and explains it.

Share:

The Visitor Design Pattern

The Visitor Design Pattern

The visitor design pattern allows us to add operations to objects that already exist without modifying their classes and without extending them.

The Beauty of Code

Coding is Art! Developing Code That Works is Simple. Develop Code with Style is a Challenge!

Update cookies preferences