분류 전체보기60 Javascript 콤마 찍기 순수 바닐라스크립트로 3자리 숫자마다 콤마를 찍는 Function이다. 정규식을 이용한 기능이다. function getCommaNumber(numStr) { var splitNums = String(numStr).split("."); var retVal = ""; var num = splitNums[0].split(",").join(""); var reg = /(^[+-]?\d+)(\d{3})/; while (reg.test(num)) { num = num.replace(reg, '$1' + ',' + '$2'); } if (splitNums.length > 1) { retVal = [num, ".", splitNums[1]].join(""); } else { retVal = num; } return .. 2021. 12. 18. c# 양력 -> 음력 변환 namespace HelloWorld { class Program { static void Main(string[] args) { // 양력 -> 음력 DateTime date = new DateTime(2021, 2, 17); Console.WriteLine($"DateFormat: {ToLunarDateTime(date).ToString("yyyy-MM-dd")}"); } // 양력 -> 음력 변환 public static DateTime ToLunarDateTime(DateTime date) { int leapMonth; int lunarYear; int lunarMonth; int lunarDay; System.Globalization.KoreanLunisolarCalendar lunar = ne.. 2021. 12. 5. Visual Studio Code 테마 변경하기 vscode의 테마를 변경하는 방법입니다. 2021. 11. 25. C# 자주쓰는 ToString 변환 자주쓰는 ToString 변환입니다. // 날짜포멧 DateTime date = DateTime.Now; Console.WriteLine($"DateFormat: {date.ToString("yyyy-MM-dd")}"); Console.WriteLine($"DateFormat: {date.ToString("yyyy-MM-dd HH:mm:ss")}"); // 통화 콤마찍기 int currency = 15000; Console.WriteLine($"통화콤마찍기: {currency.ToString("n0")}"); 결과 2021. 11. 25. 이전 1 ··· 11 12 13 14 15 다음 반응형