MathGroup Archive 2010

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Trying to remove item from list of filenames

  • To: mathgroup at smc.vnet.net
  • Subject: [mg109711] Re: Trying to remove item from list of filenames
  • From: dr DanW <dmaxwarren at gmail.com>
  • Date: Thu, 13 May 2010 07:24:05 -0400 (EDT)
  • References: <hse3or$379$1@smc.vnet.net>

Something along the lines of

Select[ list, Not@StringMatchQ[#, RegularExpression["^a.*"]] &]

Insert regex of your choice.

Enjoy,
Daniel


  • Prev by Date: Re: Scoping with Module
  • Next by Date: innerApply[{f, g}, {{a, b}, {c, d}}] = {f[a, b], g[c, d]} ?
  • Previous by thread: Trying to remove item from list of filenames
  • Next by thread: Re: Trying to remove item from list of filenames