How to do "exact match" filter

How to do "exact match" filter

mylokmylok Posts: 8Questions: 0Answers: 0
edited February 2010 in General
My table have some data like "25, 225, 1025...etc"
When type "25" I only want data "25" come up but no other data contain "25", can anyone give me some idea how to do that?
Thank very much!

Replies

  • allanallan Posts: 63,498Questions: 1Answers: 10,471 Site admin
    You need to do regular expression filtering. ^25$ should match 25 and 25 only. There is another way to do it if you want - you could use plug-in filtering: http://datatables.net/development/filtering - which will allow you to do a "==" match.

    Allan
  • mylokmylok Posts: 8Questions: 0Answers: 0
    got it, thank.
This discussion has been closed.