Donc je recherche un code permettant de récupérer juste "12345" en sachant qu'il est aléatoire, donc juste récupérer les chiffres entre :
"http://serveur.nomdujeux.fr/game.php?village=" et "&s=build_main" sans savoir le quel est dés le départ.
j'espère mettre bien expliquer, en espérant que vous puissiez m'éclairer et me guider!
NOOOKI
Messages postés20Date d'inscriptionlundi 24 janvier 2005StatutMembreDernière intervention28 février 2010 21 janv. 2010 à 01:22
Re bonsoir! Étant donnée que je suis débutant en programmation :
Private Function MidStr(ByVal Expression As String, ByVal sLeft As String, ByVal sRight As String, Optional ByVal iStart As Integer = 0) As String
Dim iPosL As Integer = Expression.IndexOf(sLeft, iStart)
If iPosL > -1 Then
Dim iPosR As Integer = Expression.IndexOf(sRight, iPosL + sLeft.Length)
If iPosR = -1 Then
'pas le caractère de fin, on prend la chaîne complète
iPosR = Expression.Length - iPosL - sLeft.Length
sRight = String.Empty
End If
Return Expression.Substring(iPosL + sLeft.Length, iPosR - iPosL - sLeft.Length)
End If
Return String.Empty
End Function
J'ai pas vraiment compris comment exploiter ce code.Si la meme lanterne pourrais m'éclairer! Merci