Skip to main content
Active reading.
Source Link
Peter Mortensen
  • 31.4k
  • 22
  • 110
  • 134

This is a new feature is called Digit Grouping Symbol. Step1- Open Region and Language in control panel Step2- click on addtional setting step3- on Numbers tab step4- set Digit Grouping Symbol as custom setting. change comma replace with(any charater as A to Z or {/,}). Digit Grouping Symbol=e; Example

Steps: string checkFormate="123e123"; decimal outPut=0.0M; decimal.TryParse(checkFormate, out outPut); Ans

  1. Open Region and Language in control panel
  2. Click on Additional setting
  3. On Numbers tab
  4. Set Digit Grouping Symbol as custom setting. Change comma; replace with (any character as A to Z or {/,}). Digit Grouping Symbol=e;

Example:outPut=123123;

string checkFormate = "123e123";
decimal outPut = 0.0M;
decimal.TryParse(checkFormate, out outPut);
Ans: outPut=123123;

This is new feature is called Digit Grouping Symbol. Step1- Open Region and Language in control panel Step2- click on addtional setting step3- on Numbers tab step4- set Digit Grouping Symbol as custom setting. change comma replace with(any charater as A to Z or {/,}). Digit Grouping Symbol=e; Example: string checkFormate="123e123"; decimal outPut=0.0M; decimal.TryParse(checkFormate, out outPut); Ans:outPut=123123;

This is a new feature called Digit Grouping Symbol.

Steps:

  1. Open Region and Language in control panel
  2. Click on Additional setting
  3. On Numbers tab
  4. Set Digit Grouping Symbol as custom setting. Change comma; replace with (any character as A to Z or {/,}). Digit Grouping Symbol=e;

Example:

string checkFormate = "123e123";
decimal outPut = 0.0M;
decimal.TryParse(checkFormate, out outPut);
Ans: outPut=123123;
Source Link

This is new feature is called Digit Grouping Symbol. Step1- Open Region and Language in control panel Step2- click on addtional setting step3- on Numbers tab step4- set Digit Grouping Symbol as custom setting. change comma replace with(any charater as A to Z or {/,}). Digit Grouping Symbol=e; Example: string checkFormate="123e123"; decimal outPut=0.0M; decimal.TryParse(checkFormate, out outPut); Ans:outPut=123123;