How can i Add ** UTF-8 ** Words to Civil Tounge. Please Guide me
Anyone Here Know This
In both versions.
I think there is a bug in both civil tongue ex in github and civil tongue
if you snip out getpattern routine and try a simple example
if ê is at the end of word replacement fails.
if ê is in the middle of word replacement works..
e.g.
<?php $Words = "vanillaê;vanêlla"; $Text = "I want to replace vanillaê and vanêlla"; $ExplodedWords = explode(';', $Words); foreach($ExplodedWords as $Word) { if (trim($Word)) $Patterns[] = '`\b' . preg_quote(trim($Word), '`') . '\b`is'; // civiltongueex // $Patterns[] = '/\b' . preg_quote(ltrim(rtrim($Word))) . '\b/is'; // civiltongue } $Result = preg_replace($Patterns, "****", $Text); echo $Result;
produces
I want to replace vanillaê and ****
you could look in code for $Patterns
and try adding a "u" after the "s"
$Patterns[] = '`\b' . preg_quote(trim($Word), '`') . '\b`isu';
and it will correctly produce
I want to replace **** and ****
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
if you want to match censored word ชื่อที่คุณ
with a thai word as an example (english would be slightly different).
with this comment
XYZชื่อที่คุณXYZ and ชื่อที่คุณ
$Patterns[] = '`\b' . preg_quote(trim($Word), '`') . '\b`is';
censors matches if not first or last letter.
XYZ****XYZ and ชื่อที่คุณ
text body XYZชื่อที่คุณXYZ and ชื่อที่คุณ
censors match only for exact word
XYZชื่อที่คุณXYZ and ****
and doubling pattern array
$Patterns[] = '`\b' . preg_quote(trim($Word), '`') . '\b`is'; $Patterns[] = '`\b' . preg_quote(trim($Word), '`') . '\b`isu';
censors match for part of word and word
XYZ****XYZ and ****
Simply Awesome.. Working Fine Thanks Lot
Comments
Anyone Here Know This
In both versions.
I think there is a bug in both civil tongue ex in github and civil tongue
if you snip out getpattern routine and try a simple example
if ê is at the end of word replacement fails.
if ê is in the middle of word replacement works..
e.g.
produces
I want to replace vanillaê and ****
you could look in code for $Patterns
and try adding a "u" after the "s"
and it will correctly produce
I want to replace **** and ****
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
if you want to match censored word ชื่อที่คุณ
with a thai word as an example (english would be slightly different).
with this comment
XYZชื่อที่คุณXYZ and ชื่อที่คุณ
censors matches if not first or last letter.
XYZ****XYZ and ชื่อที่คุณ
text body
XYZชื่อที่คุณXYZ and ชื่อที่คุณ
censors match only for exact word
XYZชื่อที่คุณXYZ and ****
text body
XYZชื่อที่คุณXYZ and ชื่อที่คุณ
and doubling pattern array
censors match for part of word and word
XYZ****XYZ and ****
I may not provide the completed solution you might desire, but I do try to provide honest suggestions to help you solve your issue.
Simply Awesome.. Working Fine

Thanks Lot