my $str="1.3.6.1.2.1.196.1.2.1.1.3.13";
(my $a = $str) =~ s/.*\.//;
La seconde ligne s'expanse de manière plus lisible ainsi:
my $a = $str;
$a =~ s/.*\.//;
ou sinon
my $a = substr($str, 1+rindex($str, '.'));
A+,
Message édité par gilou le 17-10-2018 à 22:05:47
---------------
There's more than what can be linked! -- Iyashikei Anime Forever! -- AngularJS c'est un framework d'engulé! --