Top "Filter" questions

A program or routine that blocks access to data that meet a particular criterion.

Sharepoint: How do I filter a document library view to show the contents of a subfolder?

A number of business areas I work with use a folder structure to organise their Sharepoint housed documents (not ideal …

sharepoint filter subdirectory
How to create Gmail filter searching for text only at start of subject line?

We receive regular automated build messages from Jenkins build servers at work. It'd be nice to ferret these away into …

regex filter gmail subject
using wildcards in LDAP search filters/queries

I have very limited knowledge in AD and LDAP queries so I have a simple question on how to use …

filter active-directory ldap wildcard
Filter element based on .data() key/value

Say I have 4 div elements with class .navlink, which, when clicked, use .data() to set a key called 'selected', to …

jquery filter
Efficient thresholding filter of an array with numpy

I need to filter an array to remove the elements that are lower than a certain threshold. My current code …

python filter numpy threshold
XSS filtering function in PHP

Does anyone know of a good function out there for filtering generic input from forms? Zend_Filter_input seems to …

php filter xss
Checking if a list is empty in java 8

I am new to Java8. I have implemented lists and filters. I have done a null check in my code. …

filter java-8 java-stream empty-list
Why is `[` better than `subset`?

When I need to filter a data.frame, i.e., extract rows that meet certain conditions, I prefer to use …

r filter subset r-faq
Java8: sum values from specific field of the objects in a list

Suppose to have a class Obj class Obj{ int field; } and that you have a list of Obj instances, i.…

java filter java-8 java-stream
Why does foo = filter(...) return a <filter object>, not a list?

Working in Python IDLE 3.5.0 shell. From my understanding of the builtin "filter" function it returns either a list, tuple, or …

python variables filter variable-assignment