BookmarkSubscribeRSS Feed
devarayalu
Fluorite | Level 6

11   data one;

12      string = ',leading, trailing,and multiple,,delimiters,,';

13      length word $20;

14   do until(word='');

15    count+1;

16    word=scan(string, count, ',', 'm');

           ----

           72

ERROR 72-185: The SCAN function call has too many arguments.

17    output;

18   end;

2 REPLIES 2
Haikuo
Onyx | Level 15

Works as being expected for me on SAS 9.2, Winxp 64bit.

65     data one;

66        string = ',leading, trailing,and multiple,,delimiters,,';

67        length word $20;

68     do until(word='');

69      count+1;

70      word=scan(string, count, ',', 'm');

71     output;

72     end;

73     run;

NOTE: The data set WORK.ONE has 1 observations and 3 variables.

NOTE: DATA statement used (Total process time):

      real time           0.00 seconds

      cpu time            0.00 seconds

Although after you stressed 'm' modifier, you only get one missing 'word'.

Haikuo

Tom
Super User Tom
Super User

Looks like you are running an older version of SAS where SCAN function does not support the modifiers.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

How to choose a machine learning algorithm

Use this tutorial as a handy guide to weigh the pros and cons of these commonly used machine learning algorithms.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 2 replies
  • 1793 views
  • 0 likes
  • 3 in conversation