debería, si, yo tengo en mi sobremesa una kingston y una elixir y me funcionan bien.
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCitarsi tengo
dim str as string=hola mundo
str.substring(1,6)=ola mu
Citarstr = hola que tal estas
Citarresultado= str.substring(str.indexof(" ") , str.lastindexof(" ")-str.indexof(" "))
Citar
Public Function firstandlast_word_of(ByVal inp As String) As String()
Dim resultado(2) As String
if inp.contains(" ") then
resultado(0) = inp.Substring(0, inp.IndexOf(" "))
resultado(1) = inp.Substring(inp.LastIndexOf(" "))
end if
Return resultado
End Function
Citarreturn inp.substring(inp.indexof(" "),inp.lastindexof(" ") - inp.indexof(" "))