 |
|
|
|
TextCheck - abusive words ActiveX checker/filter
© 3APA3A, Vladimir Dubrovin
ActiveX component for abusive words filtering. Implements
TextCheck.AbuseChecker interface.
Supported methods:
- CheckAbuseR(text) - checks Russian text, returns
text with substitutions
- CheckAbuseE(text) - checks English text, returns
text with substitutions
Supported properties:
- Substitution - string with substitution characters to be
used randomly to substitute characters of abusive words
- Detected - Contains number of detected abusive words
after last check
License:
Free for non-commerce usage
Installation:
regsvr32 TextCheck.dll
Test it: E-GOD
Example (ASP):
<%
Text = "Some abusive text"
Set Checker = CreateObject("TextCheck.AbuseChecker")
Checker.Substitution = "*#$"
TextChecked = Checker.CheckAbuseE(Text)
Count = Checker.Detected
Checker = Nothing
%>
<%=TextChecked%> contains <%=Count%> abusive words
DOWNLOAD
|
|
|
|
|
|
|
|