Unicode Title Cleaner is a practical XenForo add-on that standardizes thread titles in your forum. It automatically converts fancy text (bold, italic, gothic, etc.) that some users create to make their threads stand out, into normal text.
🔍 Why You Need This Add-on
A common issue in popular...
Hi everyone, I've discovered the following bug.
My forum names contain emoji (Unicode, country flags) and it works fine when using the standard database adapter
But recently I tried switching to ReplicationAdapter (XF\Db\Mysqli\ReplicationAdapter). Immediately after switching all the emoji...
I have a regular expression that replaces characters and numbers in a string. I use preg_replace and a regular expression of "/[a-z\d]/i" to do that.
$newtext= preg_replace("/[a-z\d]/i", "x", $originaltext);
Is there an easy way to extend that regex to include unicode characters?
Edited to...
Hello,
I was trying to today to test the (User Name Match Regular Expression) option on XF.
My forum is an Arabic one so I was trying to add a regex expression to allow the registration with Arabic letters only,
I used the following:
^[\u0621-\u064A]+$
Ref...