I want to filter records based on Text value using search api. e.g. below I want to filter records which ends with 11 But it should not include chl-ccsp-011 . I have tried below query but it is not working. Please suggest me how can i achieve ?.
filterText = "((11$)) && ((^(.(?!chl-ccsp-011))*$))";
$("#" + tableId).DataTable().column(colNum).search(filterText, true, false);
Thanks,
Tushar Prajapati