我们可以使用任何其他特殊字符而不是点来分隔RabbitMQ主题交换中的路由键

Can we use some other special character to separate the routing keys in a RabbitMQ topic exchange implementation. As an example can I use something like following.

##orange##lazy

here "##" is my routing key delimiter.

$string='##orange##lazy';
$pieces = explode("##", $string);
var_dump($pieces);

Sure, you can use explode function.