英文:
the best way to censor words in golang
问题
在使用Golang时,最佳的模式来屏蔽字符串中特定的滥用词汇是什么?
例如,将以下文本进行屏蔽:
Mark is a porn-star.
屏蔽后的结果应该是:
Mark is a p*******r.
我们需要将要屏蔽的词汇列表传递给相应的函数。
英文:
What is the best pattern to censor specific abuse words in string with golang?
For example censor this text:
> Mark is a porn-star.
to
> Mark is a p*******r.
from a list of words that we pass to it.
答案1
得分: 1
这个问题可以使用"strings"库函数来解决。
看看这个例子:
Golang简单的词语过滤或审查
英文:
This problem can be solved with "strings" library functions.
Look at this example:
Golang simple world filter o censor
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论