$tag = the_post_tags();
foreach($tag as $tags) {
if(strpos($tags->slug, '_en') !== false) {
echo $tags->name;
}}
$tags = get_the_tags();
foreach ( $tags as $tag ) {
if ( strpos( $tag->slug, '_en' ) !== false ) {
echo $tag->name;
}
}