“VBA faire un mot à partir d'octets” Réponses codées

Supprimer le mot de String Python

#You can remove a word from a string using str.replace ()
myString = 'papa is a good man'
newString = myString.replace('papa', '')
>>>' is a good man'
Yvant2000

VBA faire un mot à partir d'octets

Public Function MakeInteger%(LoByte As Byte, HiByte As Byte)
  If HiByte And &H80 Then
    MakeInteger = ((HiByte * &H100&) Or LoByte) Or &HFFFF0000
  Else
    MakeInteger = (HiByte * &H100) Or LoByte
  End If
End Function
Excel Hero

Réponses similaires à “VBA faire un mot à partir d'octets”

Questions similaires à “VBA faire un mot à partir d'octets”

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code