BookmarkSubscribeRSS Feed
RobertNYC
Obsidian | Level 7

Hi all--

This may be a tricky question.

I use a Macro which password protects xml files. The macro %includeds a .vbs program.

options noxsync noxwait;

%include "X:\Programs\convert.sas";

%convert_files(default=X:\Datasets\Scores,ext=xml,password=test);

When the program runs it password protects every file in the folder with the same password -- in the case above "test. I need to change this so the password is different for every file.

The password starts with the letters ORE and then the code which is the first three characters in the file name.  

For file :

"700 FY13  Report.xml" The password needs to be ORE700

For file:

"B06 FY13  Report.xml" The password needs to be OREB06

For file:

"J10 FY13 Q1  Report.xml" The password needs to be OREJ10

Is there a way to read the first three characters of a file name and then use those characters in the password?

You feedback is appreciated!

1 REPLY 1
Patrick
Opal | Level 21

You don't show us your code so it's a bit hard to give you a concrete answer.

On a general level: Wouldn't a substring() function with the filename as source string give you what you need? ... substrn(scan("B06 FY13  Report.xml",-2,'/\.'),1,3)

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1 reply
  • 928 views
  • 0 likes
  • 2 in conversation