STFINV library: seek source wavelet correction filter

◆ secomtospace()

std::string stfinv::tools::secomtospace ( std::string  s)

replace commas and semicolons by whitespace

Parameters
sinput string
Returns
input string with all commas replaced by whitespace and all semicolons replaced by whitespace

Definition at line 75 of file parameterhandler.cc.

Referenced by stfinv::STFFourierDomainEngine::initialize().

76 {
77  std::replace(s.begin(), s.end(), ',', ' ');
78  std::replace(s.begin(), s.end(), ';', ' ');
79  return(s);
80 } // std::string stfinv::tools::secomtospace(const std::string& s)
Here is the caller graph for this function: