Skip to content
Snippets Groups Projects
  1. Dec 18, 2016
    • Mark Olesen's avatar
      ENH: additional startsWith(), endsWith() string methods · 2b143606
      Mark Olesen authored
      - As the names describe, check if the string starts or ends with a
        particular value. Always true if the given text is empty or if the
        string is identical to the given text.
      2b143606
    • Mark Olesen's avatar
      ENH: additional fileName methods · e3797200
      Mark Olesen authored
         - add an extension to the file name
         - remove a file extension
         - check if a file name has an extension
         - check if a file name has a particular extension (as word),
           or matches a particular grouping of extensions (as wordRe).
      e3797200
    • Mark Olesen's avatar
      ENH: initializer list constructor for fileName · b08dadff
      Mark Olesen authored
      This slightly more convenient when working with char[] input:
      
           fileName file1{ "path", "name", "to", "file.ext" };
      vs.  fileName file1 = fileName(path)/"name"/"to"/"file.ext";
      
      But is a bit more efficient since it avoid most of the intermediate
      copying and resizing incurred by the '/' operator.
      b08dadff
  2. Dec 19, 2016
  3. Dec 18, 2016
  4. Dec 19, 2016
  5. Dec 18, 2016
  6. Dec 16, 2016