February 25, 201213 yr I'm populating a value list from a field containing all the file names in a directory (hundreds of values). I need to filter it to only show files with a .txt or .TXT extension. I can do it using a loop in a script, but I'm hoping someone can point out a simple calculation technique. BTW, I've looked at a couple of functions on BrianDunning.com and found them too involved for this simple case. Others may eventually look at my code! Plus, I'd generally like to know how to filter fields for other reasons. Thanks for any help.
February 25, 201213 yr Author Hundreds of file names in a single field ... each one a value ... as returned by a plug-in's list folder function.
February 25, 201213 yr Using CustomList ( )* by Agnes Barouh, the calculation will be as simple as: CustomList ( 1 ; ValueCount ( text ) ; "If ( Right ( GetValue ( text ; [n] ) ; 4 ) = ".txt" ; GetValue ( text ; [n] ) )" ) * http://www.briandunning.com/cf/868 You could even try to use recursion with an unstored calculation field ( name it "result" ), looping with itself. Let([ T = yourTextField ; $i_InnerRecursion = $i_InnerRecursion + 1 ]; Case( Right ( GetValue ( T ; $i_InnerRecursion ) ; 4 ) = ".txt" and $i_InnerRecursion ≤ ValueCount ( T ) ; List ( GetValue ( T ; $i_InnerRecursion ) ; result ) ; $i_InnerRecursion ≤ ValueCount ( T ) ; result ; Let ( $i_InnerRecursion = "" ; "" ) ) )
February 25, 201213 yr How about a non-recursive one? FilterValues ( listOfFiles ; Substitute ( listOfFiles & ¶ ; [ ".txt" & ¶ ; "§" ] ; [ ".TXT" & ¶ ; "∆" ] ; [ ¶ ; "±¶" ] ; [ "§" ; ".txt" & ¶ ] ; [ "∆" ; ".TXT" & ¶ ] ) )
February 26, 201213 yr Now this rivals your Tower of Hanoi calculation and your laminated calculation as well. Absolute genius, watching the switch work through it. Is there any reason (other than clarity) that you listed it as ".TXT" & ¶ instead of "TXT¶" ?
February 26, 201213 yr Is there any reason (other than clarity) that you listed it as ".TXT" & ¶ instead of "TXT¶" ? Well, the idea is to generalize it into suffix & ¶ BTW, at least part of the credit goes to Agnes Barouh. Now this rivals your Tower of Hanoi calculation I have a Tower of Hanoi calculation?
February 26, 201213 yr What are these icons? "§" "∆" & why are you using them in the calculation? thanks -i
February 26, 201213 yr How about a non-recursive one? Ahh, the power of FilterValues ( ) ! Well done.
February 26, 201213 yr I have a Tower of Hanoi calculation? Well that is what I named your calculation where you first used §§ within Substitute() to play switch-a-roo with the values in this way. Your formula reminded me of Tower of Hanoi http://www.cut-the-k...nce/hanoi.shtml which I had first learned of from a great post here http://attic.fmforum...earch/1/#187899. Unfortunately, I could not find that original post where you first presented it and I sure tried. I believe it was around 2007. If you didn't have a billion posts on all the forums it would be easier but please continue making it difficult for us to keep up with your work. You would think I would remember the exact calculation of yours but it was not the formula that mattered in that instance but rather the power of using Substitute() to re-work values in such a pretty, recursive fashion. Tower of Hanoi is pretty cool. I miss Søren. He always added so much flavor (and sometimes heat, LOL) to a discussion.
February 26, 201213 yr I miss Søren. He always added so much flavor (and sometimes heat, LOL) to a discussion. Yes. It was from reading his posts that I developed an enthusiasm for cyrptology. He certainly had a way with words. :)
February 27, 201213 yr Your formula reminded me of Tower of Hanoi I see - but the Tower of Hanoi is something much more complex. This is just 'cover the furniture while I spray-paint'.
February 27, 201213 yr LaRetta, I believe your original "Tower of Hanoi" post is here: http://filemakertoday.com/com/showthread.php/9606-concatenated-list-substitution-and-for-final-comma "Thanks, Michael. What a pretty switch-a-roo! I'm naming your calc Tower of Hanoi."
February 27, 201213 yr Then I'm mistaken because that wasn't the calc I was thinking of. But thank you for finding it anyway!! Well, I think many calculations are gorgeous and it's hard to find a favorite! :laugh2:
Create an account or sign in to comment