- Output for 8.1.0 - 8.1.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.25, 8.4.1 - 8.4.12
- array ( 0 => ':slight_smile:', 1 => ':joy:', )
<?php
$field_from_db = 'Hello How are you :slight_smile::joy::_do_not_match:test test::';
$regex = '/:[a-z0-9]+(?:[-’_][a-z0-9]+)*:/i';
preg_match_all($regex, $field_from_db, $matches);
var_export($matches[0]);