Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: JonnoA
  • Content: Threads
  • Order by date
  1. JonnoA

    Backsubstitution in a variable?

    I am doing a find-replace on filenames which are 2 numbers then description. I need to transform the filenames. I would like the 2 parts of the substitution as variables (so that I can pass in on the command line). I show a cutdown version here. This works: my $source = "(\\d\\d)(\.\*)" ; $_ =...
  2. JonnoA

    operator= in template derived class

    I have a template class template<class T> class WavesetTemplate { public: ... WavesetTemplate<T>& operator=( const WavesetTemplate<T>& ); friend WavesetTemplate<T> operator*(const WavesetTemplate<T>& lhs, const WavesetTemplate<T>& rhs); protected: vector<vector<T> > m_TemplateData; ... }; and...

Part and Inventory Search

Back
Top