in reply to Re^2: Inserting, update and deleteting a database under conditions
in thread Inserting, update and deleteting a database under conditions

my @menu_files = grep m{([^/]+)\.txt}, @files;
  • Comment on Re^3: Inserting, update and deleteting a database under conditions
  • Download Code

Replies are listed 'Best First'.
Re^4: Inserting, update and deleteting a database under conditions
by Nik (Initiate) on Jan 10, 2008 at 17:05 UTC
    If only was that easy

    I tried out but 'grep' doesn't strip the filename out of the bigger string, now pop up menu has entries like this:

    D:/www/data/text/name_of_the_file.txt

      I personally believe that then you should explain what it is that you want. Based on other nodes in this thread, I suppose that that's 'name_of_the_file.txt'. In that case, I would do:

      # untested use File::Basename; my @menu_files = map { my $n=basename $_; $n =~ /\.txt$/ ? $n : () } @files;
      --
      If you can't understand the incipit, then please check the IPB Campaign.