32 lines
784 B
C#
32 lines
784 B
C#
|
using System.Collections;
|
||
|
using System.Collections.Generic;
|
||
|
using System.Text.RegularExpressions;
|
||
|
|
||
|
public class Player
|
||
|
{
|
||
|
public string name;
|
||
|
public string id;
|
||
|
|
||
|
/// <summary>
|
||
|
/// Will sanitize the text and set it for the player
|
||
|
/// </summary>
|
||
|
public void SetName(string _name)
|
||
|
{
|
||
|
name = SanitizeString(_name);
|
||
|
}
|
||
|
|
||
|
private string SanitizeString(string input)
|
||
|
{
|
||
|
// Utilisez une expression régulière pour supprimer tout ce qui n'est pas une lettre ou un chiffre
|
||
|
string sanitized = Regex.Replace(input, @"[^a-zA-Z0-9]", "");
|
||
|
|
||
|
// Limitez la longueur à 16 caractères maximum
|
||
|
if (sanitized.Length > 16)
|
||
|
{
|
||
|
sanitized = sanitized.Substring(0, 16);
|
||
|
}
|
||
|
|
||
|
return sanitized;
|
||
|
}
|
||
|
}
|