Thanks to visit codestin.com
Credit goes to www.scribd.com

0% found this document useful (0 votes)
5 views1 page

Common Character Functions For Creating Columns

The document outlines common character functions in SAS for manipulating character columns. Key functions include UPCASE, LOWCASE, PROPCASE, CATS, and SUBSTR, each serving specific purposes such as changing letter case, concatenating strings, and extracting substrings. These functions are essential for data processing in SAS programming.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
5 views1 page

Common Character Functions For Creating Columns

The document outlines common character functions in SAS for manipulating character columns. Key functions include UPCASE, LOWCASE, PROPCASE, CATS, and SUBSTR, each serving specific purposes such as changing letter case, concatenating strings, and extracting substrings. These functions are essential for data processing in SAS programming.
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Common Character Functions for Creating Columns https://learn.sas.com/pluginfile.php/13144/mod_scormddl/content/9603...

Print

Common Character Functions for Creating Columns

SAS has many functions you can use to manipulate character columns. The arguments include one
or more character columns in your data. These are a few of the many character functions you can
use:

Character Function What it Does

UPCASE (char) Changes letters in a character string to uppercase or


LOWCASE(char) lowercase

PROPCASE (char, <delimiters>) Changes the first letter of each word to uppercase
and other letters to lowercase

CATS (char1, char2, ...) Concatenates character strings and removes leading
and trailing blanks from each argument

SUBSTR (char, position, <length>) Returns a substring from a character string

SAS® Programming 1: Essentials


Copyright © 2025 SAS Institute Inc., Cary, NC, USA. All rights reserved.

Close

1 of 1 6/11/2025, 9:29 PM

You might also like