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-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

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
  • 2132 views
  • 0 likes
  • 3 in conversation