
#dc comics#dc#dick grayson#dc fanart#batman#tim drake#batfam#batfamily#bruce wayne
seen from New Zealand

seen from United States
seen from China
seen from Kazakhstan

seen from Sweden
seen from China
seen from China
seen from United States

seen from Singapore
seen from Romania
seen from China
seen from Australia
seen from Canada

seen from United States
seen from Canada
seen from United States
seen from China

seen from United Kingdom
seen from Romania

seen from Singapore
Extraire un mot avec strstr
http://php.net/manual/fr/function.strstr.php
<?php $email = '[email protected]'; $domain = strstr($email, '@'); echo $domain; // Affiche : @example.com $user = strstr($email, '@', true); // Depuis PHP 5.3.0 echo $user; // Affiche : name ?>
LUCKYSTR
This was a problem where string matching was required.
For the time being I used strstr() function in C++ to check for matching string.
But now I am thinking of using some famous algorithms to implement string matching.