Il ya plusieurs solutions :
a) Si on sait que ça commence toujours par "Firefox", alors on peut faire
if Left(objExcel.Cells(intRow,1).Value, 7) = "Firefox" Then |
b) Si on sait que la chaine "Firefox" peut se trouver n'importe où, alors on peut faire
if InStr(objExcel.Cells(intRow,1).Value, "Firefox" ) > 0 Then |
c) Sinon, il existe un objet VBS RegExp, mais je ne m'en suis jamais servi personnellement.