当前位置:网站首页>Unity sends messages and blocks indecent words
Unity sends messages and blocks indecent words
2022-07-05 04:55:00 【yaohuiyaoo】
using System;
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
public class Test : MonoBehaviour {
Text text;
Button btn;
InputField inout;
string temp;
void Start () {
temp = null;
text = transform.GetChild(0).GetComponent
btn = transform.GetChild(1).GetComponent();
inout = transform.GetChild(2).GetComponent();
btn.onClick.AddListener(Send);
}
string mm;
void Send()
{
string s =inout.text;
List list = new List();
list.Add(“ Bad guys ”);
list.Add(“ A fool ”);
for(int i = 0; i < list.Count; i++)
{
for (int j = 0; j< s.Length; j++)
{
temp = temp + s[j];
//print(temp);
for (int z =j+1; z < s.Length; z++)
{
temp = temp+s[z];
print(temp);
if (temp.Equals(list[i]))
{
int y = z - j;
mm= s.Replace(temp,Change(y));
break;
}
}
temp = null;
}
}
text.text = mm;
}
private string Change(int y)
{
string s = null;
for (int i = 0; i <=y; i++)
{
s = s + "*";
}
return s;
}
边栏推荐
- Flink集群配置
- [groovy] closure closure (customize closure parameters | customize a single closure parameter | customize multiple closure parameters | specify the default value of closure parameters)
- 介绍汉明距离及计算示例
- 3dsmax2018 common operations and some shortcut keys of editable polygons
- Research and investment forecast report of adamantane industry in China (2022 Edition)
- 【acwing】528. cheese
- Thematic information | carbon, carbon neutrality, low carbon, carbon emissions - 22.1.9
- China polyurethane rigid foam Market Research and investment forecast report (2022 Edition)
- AutoCAD - window zoom
- AutoCAD - feature matching
猜你喜欢
Use assimp library to read MTL file data
2022 thinking of mathematical modeling C problem of American college students / analysis of 2022 American competition C problem
[AI bulletin 20220211] the hard core up owner has built a lidar and detailed AI accelerator
Unity3d learning notes
[Business Research Report] Research Report on male consumption trends in other economic times -- with download link
Séparation et combinaison de la construction du système qualité
Thematic information | carbon, carbon neutrality, low carbon, carbon emissions - 22.1.9
49 pictures and 26 questions explain in detail what is WiFi?
Minor spanning tree
SQL set operation
随机推荐
[Chongqing Guangdong education] National Open University 2047t commercial bank operation and management reference test in autumn 2018
中国聚氨酯硬泡市场调研与投资预测报告(2022版)
Common database statements in unity
Unity and database
Number theoretic function and its summation to be updated
jmeter -- 分布式压测
Research and investment forecast report of adamantane industry in China (2022 Edition)
猿人学第一题
Solution of circular dependency
2020-10-27
质量体系建设之路的分分合合
stm32Cubemx(8):RTC和RTC唤醒中断
[Business Research Report] Research Report on male consumption trends in other economic times -- with download link
Use assimp library to read MTL file data
An article takes you to thoroughly understand descriptors
This article is good
【acwing】240. food chain
[groovy] closure (closure call is associated with call method | call () method is defined in interface | call () method is defined in class | code example)
次小生成树
JVM 原理和流程简介