StringExtensions.ToAllowedId
Declaration#
public static string ToAllowedId(string str)Parameters#
| Name | Description |
|---|---|
| str | Value to convert |
Description#
Convert string to allowed id
Usage#
Example
using NullSave.GDTK;using UnityEngine;
public class Example : MonoBehaviour{
public void ExampleMethod() { string original = "This Is My Source"; string result = original.ToAllowedId(); }
}