Maison > Questions et réponses > le corps du texte
my_string = '(code TVA) adresse (adresse) 034372 350-352 Vo Van Kiet, quartier Co Giang'
Mon code actuel =
preg_replace('/[^0-9]/', '',my_string)
Mon résultat actuel = 034372350352 Ce n'est pas la bonne sortie
Mais j'ai besoin du résultat correct = 034372
Comment obtenir la première séquence de nombres dans une chaîne en utilisant php ?
Merci
P粉2311124372023-09-10 09:31:03
<?php // make a service class or trait or package with a format enum by country could be useful. Also if you add the functionality to implement it into Laravel. class VatService { function getVatId(string $hayStack, string $needle = '/\d+/', bool $validateCount = false, $count = 6): string { return ( preg_match($needle, $hayStack, $matches) && ( $count == strlen($matches[0])) && $validateCount ) ? $matches[0] : throw new Exception('VaT number was not found : ' . $count . ' == ' . strlen($matches[0]) . ' ' . $matches[0] ); } }
$myString = '(VAT code) Địa chỉ (Address) 034372 350-352 Võ Văn Kiệt, Phường Cô Giang'; echo getVatId(hayStack: $myString, validateCount: true, count: 6);
Tu as raison, je suis au téléphone. Vous devriez envisager de faire une validation et une gestion des erreurs à ce sujet. Peut-être que cet exemple aide à cela.
P粉0012064922023-09-10 09:11:13
$my_string = "(VAT code) Địa chỉ (Address) 034372 350-352 Võ Văn Kiệt, Phường Cô Giang"; $pattern = "/\d+/"; preg_match($pattern, $my_string, $matches); echo $matches[0]; //Outputs 034372
Vous pouvez utiliser preg_match pour ce faire. Si vous transmettez le troisième argument ($matches) à preg_match, cela créera un tableau rempli de résultats de recherche et $matches[0] contiendra la première instance de texte qui correspond au modèle complet.
S'il n'y a aucun nombre dans la chaîne, vous pouvez utiliser une instruction if comme celle-ci pour identifier ces cas :
if (preg_match($pattern, $my_string, $matches)) { echo $matches[0]; } else { echo "No match found"; }
Voir https://www.php.net/manual/ en/function.preg-match.php