in reply to Re: Best method to eliminate substrings from array
in thread Best method to eliminate substrings from array
I am currently eliminating duplicates @arrWorkingCompletedChains = uniq @arrWorkingCompletedChains; and sorting the list largest to smallest @arrWorkingCompletedChains = sort { length($b) <=> length($a) } @arrWorkingCompletedChains;
What I need to do is eliminate any overlapping string sets from the working array so the end result can be stored in our database
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^3: Best method to eliminate substrings from array
by Anonymous Monk on Jun 26, 2019 at 17:39 UTC | |
by catemp (Initiate) on Jun 26, 2019 at 18:00 UTC |