Search for any string in column - all except empty cells
Search for any string in column - all except empty cells
awariat
Posts: 7Questions: 3Answers: 0
in SearchPanes
Hi
To search for empty string in column cells, I found to use:
table.column(28).search( '^$', true, false ).draw();
But how to search for NOT empty strings and remove all empties?
I need only rows where I have at least one character in a cell.
Kind regards
Jack
This question has an accepted answers - jump to answer
Answers
Try this:
The
.+
requires at least one character.Kevin
Thank you very much