Classes Utilities Scripts Speech Search Up Home
ISIP IFC Index
Title Bar

/home5/piconepr/public_html/isip/projects/speech/software/documentation/class/system/SysString/sstr_06.cc

// file: $isip/class/system/SysString/sstr_06.cc
// version: $Id: sstr_06.cc 9418 2004-03-10 17:11:33Z parihar $
//

// isip include files
//
#include "SysString.h"

[snipped]

// method: countDelimiters
//
// arguments:
//  unichar delim: (input) delimiter character
//
// return: the number of delimiters seperated by delim
//
// find the number of delimiters in the string
//
long SysString::countDelimiters(unichar delim_a) const {

  // create a string out of the delimiter character
  //
  static SysString temp(1);
  temp(0) = delim_a;
  temp(1) = (unichar)NULL;

  // call master function
  //
  return countDelimiters(temp);
}

[snipped]

//
// end of file


Footer

Up | Home | Courses | Projects | Proposals | Publications
Please direct questions or comments to joseph.picone@isip.piconepress.com