Hitachi

JP1 Version 12 JP1/IT Desktop Management 2 - Asset Console Creating an Access Definition File Guide


$LOWER (convert string)

$LOWER converts the alphabetic characters specified in the argument character string to lower case.

Organization of this page

Syntax

return-value=$LOWER(character-string)

Values

Status

The following table lists and describes the possible statuses:

Status

Description

NORMAL

Normal end

NODATA

ERROR

Script execution interrupted

An invalid argument was specified, or an error other than the above occurred.

Legend:

—: Not applicable

Example

The following example converts the host name acquired from system inventory information to lower case, and outputs the result:

[SET_VALUE]
  NAME = 'HOSTNAME'
  VAL = $LOWER(NAME)
  MSG = 'LOWER = ' + VAL
  $ECHO(MSG)
Execution result:

LOWER = hostname