Chapter Contents

Previous

Next
LOWCASE

LOWCASE



Converts all letters in an argument to lowercase

Category: Character


Syntax
Arguments
Details
Examples

Syntax

LOWCASE(argument)

Arguments

argument
specifies any SAS character expression.


Details

The LOWCASE function copies a character argument, converts all uppercase letters to lowercase letters, and returns the altered value as a result.


Examples

SAS Statements Results
x='INTRODUCTION';
y=lowcase(x);
put y;
 

introduction


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.