Advertisement
halleman19

money separator + zero support (not regex) | unity3d

Jan 23rd, 2025 (edited)
48
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 1.09 KB | Software | 0 0
  1. using System;
  2.  
  3. namespace avstn.moneySeparator
  4. {
  5.     class Program
  6.     {
  7.         private static void Main(string[] args)
  8.         {
  9.             int numb;
  10.  
  11.             do
  12.             {
  13.                 Console.WriteLine("Enter number");
  14.  
  15.                 numb = int.Parse(Console.ReadLine());
  16.  
  17.                 Console.WriteLine("Result: {0} \n", separateMoney(numb, '.'));
  18.             }
  19.             while (numb > 0);
  20.         }
  21.  
  22.         private static string separateMoney(int numb, char sepSymb)
  23.         {
  24.             string money = numb.ToString();
  25.  
  26.             int blLen = 3;
  27.  
  28.             if (money.Length <= blLen)
  29.                 return money;
  30.  
  31.             string response = string.Empty;
  32.  
  33.             do
  34.             {
  35.                 string a = money.Substring(money.Length - blLen, blLen);
  36.                 money = money.Substring(0, money.Length - blLen);
  37.  
  38.                 response = string.Format("{0}{1}{2}", sepSymb, a, response);
  39.             }
  40.             while (money.Length > blLen);
  41.  
  42.             return string.Format("{0}{1}", money, response);
  43.         }
  44.     }
  45. }
  46.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement