Extended Systems OneBridge 4.1 Guía de usuario Pagina 199

  • Descarga
  • Añadir a mis manuales
  • Imprimir
  • Pagina
    / 222
  • Tabla de contenidos
  • SOLUCIÓN DE PROBLEMAS
  • MARCADORES
  • Valorado. / 5. Basado en revisión del cliente
Vista de pagina 198
APPENDIX A Function Reference
Users Guide 185
number length
The new length of the result string.
string stuffstring
The string to append.
Examples To expand a string by filling its right side:
uRStuff("3.5", 5) // returns "3.5 "
uRStuff("3.5", 5, "0") // returns "3.500"
uRTrim
Description Removes characters from the right side of the string. If the second parameter is
omitted, it defaults to spaces (ASCII 32).
Syntax string uRTrim(input, trimstring)
Parameters
string input
The input string.
string trimstring
The string to trim.
Examples To trim a string on the right side:
uRTrim("3.5 ") // returns "3.5"
uRTrim("3.500", "0") // returns "3.5"
uTrim
Description Removes characters from both sides of the string. If the second parameter is
omitted, it defaults to spaces (ASCII 32).
Syntax string uTrim(input, trimstring)
Parameters
string input
The input string.
string trimstring
The string to trim.
Examples To trim a string on both sides:
Vista de pagina 198
1 2 ... 194 195 196 197 198 199 200 201 202 203 204 ... 221 222

Comentarios a estos manuales

Sin comentarios