DESCRIPCIÓN:
Obtiene la cadena del Valor Origen y la mantiene sin transformaciones.
EJEMPLO:
Añadir “EPSON”
Valor origen: “EPSON”
Valor Procesado: “EPSON”
Si la longitud de la cadena
es 0, establece el valor vacío “”
Si contiene un carácter “’”
lo elimina.
CONFIGURACIÓN:
Valor | Valor2 | Relacion | Relacion2 | Operacion | Factor |
Literal | |||||
CÓDIGO:
If ValorOrigen.Length = 0 Then
ValorProcesado = “”
Else
ValorProcesado = ValorOrigen.Replace(“‘”, “””)
End If