Posted By

webonomic on 10/02/08


Tagged

character String count


Versions (?)


Advertising

Website Promotion DIRECTORY is a crucial factor for all websites that need to gain better organic search engine rankings and increase website traffic.
Submitting your website as part of your Web Promotion strategy to our SEO friendly and high traffic Business Directory for review is an excellent way to gain a valuable backlink and increase your websites visibility online.

Submit Site


Count up the number of characters in a string


Published in: SAS 






URL: http://jaredprins.squarespace.com/blog/2008/10/7/some-sas-code-snippets.html

Expand | Embed | Plain Text
  1. data _null_ ;
  2.  
  3. long='dog cat rat bat dog camel dingo snake bigdog' ;
  4.  
  5. num_dog=count(long,'dog') ;
  6.  
  7. put num_dog= ;
  8.  
  9. run ;

Report this snippet 

You need to login to post a comment.