How to Hide the "Search Regex" Admin Menu

function plt_hide_search_regex_menus() {
	//Hide the "Tools → Search Regex" menu.
	remove_submenu_page('tools.php', 'search-regex.php');
}

add_action('admin_menu', 'plt_hide_search_regex_menus', 11);

Where do I put this code?