16      "----------------------------------------------------------------\n";
 
   37      TPMERegexp re2(
"([\\w\\.-]+)@((\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+))");
 
   38      TString m2(
"matevz.tadel@137.138.170.210");
 
   50      TString m(
"root:x:0:0:root:/root:/bin/bash");
 
   60      printf(
"Split with empty elements in the middle and at the end\n" 
   61             "maxfields=0, so trailing empty elements are dropped\n%s", 
underline);
 
   62      m = 
"root::0:0:root:/root::";
 
   67      printf(
"Split with empty elements at the beginning and end\n" 
   68             "maxfields=-1, so trailing empty elements are kept\n%s", 
underline);
 
   75      m = 
"A dummy line of text.";
 
   82      printf(
"Split with regexp potentially matching a null string \n%s", 
underline);
 
  104      TPMERegexp re(
"(\\d+)\\.(\\d+)\\.(\\d+)\\.(\\d+)");
 
  109      printf(
"Substitute '%s','%s' => '%s'\n", 
m.Data(), 
r.Data(), s.Data());
 
  115      TPMERegexp re(
"(\\w+)\\.(\\w+)@[\\w\\.-]+", 
"g");
 
  116      TString m(
"rene.brun@cern.ch, philippe.canal@fnal.gov, fons.rademakers@cern.ch");
 
  120      printf(
"Substitute '%s','%s' => '%s'\n", 
m.Data(), 
r.Data(), s.Data());
 
ROOT::Detail::TRangeCast< T, true > TRangeDynCast
TRangeDynCast is an adapter class that allows the typed iteration through a TCollection.
Option_t Option_t TPoint TPoint const char GetTextMagnitude GetFillStyle GetLineColor GetLineWidth GetMarkerStyle GetTextAlign GetTextColor GetTextSize void char Point_t Rectangle_t WindowAttributes_t Float_t r
void Print(Option_t *option="") const override
Dump this marker with its attributes.
Wrapper for PCRE library (Perl Compatible Regular Expressions).