Formula Student Germany
International Design Competition - 18th to 24th of August 2025 in Hockenheim

Regular Expression Search in DataTables

We use DataTables on many pages to display SQL database queries. There you will now find a regex checkbox near to the global search input, which you used to access this page. The regex option allows you to apply significantly more complex filters across the entire table or individual columns. 

So if you only want to show the rows with XL or L in a table of clothing sizes, you can use this search expression: \b(XL|L)\b
() => Capturing Group, | => OR, \b => Word Boundary. 

Partners of FSG 2025