Hi there,
WP search isn’t particularly great, you can filter its results with a PHP Snippet.
For example, this trys to exact match the search:
add_action('pre_get_posts', 'my_make_search_exact', 10);
function my_make_search_exact($query){
if(!is_admin() && $query->is_main_query() && $query->is_search) :
$query->set('exact', true);
endif;
}
Otherwise you may want to consider a dedicated search plugin that has more options to control the filter.