Well... it does exactly what the comment says:
'This function extracts a substring from
'a bigger string, using a smaller string as "key" and
'defining a number of characters to the left and
'to the right of the key string
'example: exizderN("givemeyourKEYsplease";"KEY";2;3)
' result: "urKEYspl"
'%Copyright, 2008, Andrés González
Function exizderN(texto As String, clave As String, izquierda As Integer, derecha As Integer) As String
inicio = InStr(1, texto, clave, 1)
extraccion = Mid(texto, inicio - izquierda, izquierda + Len(clave) + derecha)
exizderN = extraccion
End Function
No comments:
Post a Comment