Función Right

Devuelve los «n» caracteres que se encuentran más a la derecha de una expresión de cadena.

Consulte también: Función Left.

Sintaxis:


Right (string As String, length As Long)

Valor de retorno:

Cadena

Parámetros:

string: Any string expression that you want to return the rightmost characters of.

length: Numeric expression that defines the number of characters that you want to return. If length = 0, a zero-length string is returned. The maximum allowed value is 2,147,483,648.

El ejemplo siguiente convierte una fecha en formato AAAA-MM-DD al formato de fecha de EE. UU. (MM/DD/AAAA).

Códigos de error:

5 Llamada a procedimiento no válida

Ejemplo:


Sub ExampleUSDate
Dim sInput As String
Dim sUS_date As String
    sEntrada = InputBox("Escriba una fecha en el formato internacional «AAAA-MM-DD»")
    sUS_date = Mid(sInput, 6, 2)
    sUS_date = sUS_date & "/"
    sUS_date = sUS_date & Right(sInput, 2)
    sUS_date = sUS_date & "/"
    sUS_date = sUS_date & Left(sInput, 4)
    MsgBox sUS_date
End Sub

¡Necesitamos su ayuda!