본문 바로가기
728x90

목록244

라스트오리진 ~ 변화의 성소 제 4구역 38층 ** 본 배치도는 주관적 의견이기에 참고용도로 활용하시기 바랍니다. -배치도 스쿼드 중간 변형 2022. 11. 1.
라스트오리진 ~ 변화의 성소 제 4구역 37층 ** 본 배치도는 주관적 의견이기에 참고용도로 활용하시기 바랍니다. -배치도 2022. 11. 1.
Unity & C# ~ 문자열에서 여러 요소 바꾸기 String.Replace("&", "and").Replace(",", "").Replace(" ", " ") .Replace(" ", "-").Replace("'", "").Replace(".", "") .Replace("eacute;", "é").ToLower(); // 다른 방식으로 변환 StringBuilder sb = new StringBuilder(string); sb.Replace(",", ""); sb.Replace(" ", ""); sb.Replace("'", ""); sb.Replace(".", ""); var text = sb.ToString(); Debug.Log(text); 2022. 10. 24.
Unity & C# ~ 문자열에서 단어 검색 방법 string factMessage = "Extension methods have all the capabilities of regular static methods."; // Write the string and include the quotation marks. Console.WriteLine($"\"{factMessage}\""); // Simple comparisons are always case sensitive! // 문자열에 검색할 단어가 있는지 확인 bool containsSearchResult = factMessage.Contains("extension"); Console.WriteLine($"Contains \"extension\"? {containsSearchResult}"); // F.. 2022. 10. 24.
라스트오리진 ~ 변화의 성소 제 4구역 36층 ** 본 배치도는 주관적 의견이기에 참고용도로 활용하시기 바랍니다. -배치도 2022. 10. 22.
라스트오리진 ~ 변화의 성소 제 4구역 35층 ** 본 배치도는 주관적 의견이기에 참고용도로 활용하시기 바랍니다. -배치도 2022. 10. 22.
SMALL