www.pudn.com > FastScript15.rar > string.cpp


/****************************/ 
/* FastScript v1.0          */ 
/* String demo              */ 
/****************************/ 
 
int i, j; 
string s; 
 
void OK(int n) 
{ 
  ShowMessage(n); 
} 
 
{ 
  s = "Hello World!\n\rIt's working!"; 
 
  j = 0; 
  for(i=1;i<=Length(s);i++) 
    if (s[i] == " ") 
      j++; 
 
  OK(j); 
}