≡
×
Plus
Manual
Examples
Reference
Download
Blog
Community
Support
Filter reversely
Filter reversely
neverfree
Posts: 2
Questions: 0
Answers: 0
June 2010
edited June 2010
in
General
Hi,
my question is how to filter data in a column reversely,
for example I key in the word "apple" and want to get the row with data exclude "apple" in a specific column
what should I do to get this done ? I have no idea
thx ~
Replies
neverfree
Posts: 2
Questions: 0
Answers: 0
June 2010
Problem solved, just using the regex! thx.
abbottmw
Posts: 29
Questions: 0
Answers: 0
June 2010
Which regex did you end up using?
I had this same type of question posted in here
I used the regex ^((?!foo).)*$ where foo would be your "apple"
http://datatables.net/forums/comments.php?DiscussionID=2050&page=1#Item_0
This discussion has been closed.
Replies
I had this same type of question posted in here
I used the regex ^((?!foo).)*$ where foo would be your "apple"
http://datatables.net/forums/comments.php?DiscussionID=2050&page=1#Item_0