BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
David_Billa
Rhodochrosite | Level 12

can someone help me understand this line?

 

MAT_NBR= prxchange('s/^(0*)//', -1,NBR);
1 ACCEPTED SOLUTION

Accepted Solutions
kelxxx
Quartz | Level 8

Unless I am mistaken,

mat_nbr = remove the Matched Pattern in variable NBR , the value of times is –1, then matching patterns continue to be replaced until the end of source is reached.

Sequence: match all of the followings in order
BeginOfLine
CapturingGroup
GroupNumber:1
Repeat
0
zero or more times

 

 

=>>> remove Leading Zeros in the varible nbr

nbr = 0001 => mat_nbr=1

nbr= 001 01 => mat_nbr=1 01

View solution in original post

2 REPLIES 2
kelxxx
Quartz | Level 8

Unless I am mistaken,

mat_nbr = remove the Matched Pattern in variable NBR , the value of times is –1, then matching patterns continue to be replaced until the end of source is reached.

Sequence: match all of the followings in order
BeginOfLine
CapturingGroup
GroupNumber:1
Repeat
0
zero or more times

 

 

=>>> remove Leading Zeros in the varible nbr

nbr = 0001 => mat_nbr=1

nbr= 001 01 => mat_nbr=1 01

PGStats
Opal | Level 21

The function call removes leading zeros if starting at the first character. Is equivalent to prxchange("s/^0+//", 1, NBR). Note that prxchange("s/^\s*0+//", 1, NBR) would account for leading spaces.

PG

hackathon24-white-horiz.png

The 2025 SAS Hackathon Kicks Off on June 11!

Watch the live Hackathon Kickoff to get all the essential information about the SAS Hackathon—including how to join, how to participate, and expert tips for success.

YouTube LinkedIn

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 895 views
  • 2 likes
  • 3 in conversation