728x90 BBCode 제거1 NGUI, BBCode 태그 제거하기 (Replace) BBCode단순하게 BBCode 기능을 비활성화할 수 있지만(supportEncoding = false), 반드시 이용은 하나 유저 입력을 막고 싶은 경우가 있습니다. 정규식과 string의 Replace를 적절히 이용하면 쉽게 제거할 수 있습니다.스크립트public static class Utils { public static string RemoveBBCode(string input) { string output = input; // Remove [b], [i], [u], [s], [sub], [sup] tags output = Regex.Replace(output, @"\[(b|i|u|s|sub|sup)\]", ""); // Remove [url=...] tags with variable-lengt.. 2023. 4. 8. 이전 1 다음 반응형