A script-enabled browser is required for this page to function properly.

ORA_NLS.RIGHT_TO_LEFT built-in function

This function returns true or false, depending on whether the writing direction of the current language is "right-to-left".

Syntax


FUNCTION ORA_NLS.RIGHT_TO_LEFT
RETURN BOOLEAN;

Returns

TRUE or FALSE.

Example


 /*
  ** Verify that the language is a right-to-left language
 */
  rtl := ORA_NLS.RIGHT_TO_LEFT;
  IF rtl = FALSE
   TEXT_IO.PUT (langinfo.txt, 'This is not a right to left
   language.');
  ENDIF;

See also

About the ORA_NLS built-in package

ORA_NLS built-in package