Create a function to convert from string to Decimal using JavaScript

Create a function to convert a string to decimal using JavaScript.

Javascript
function parseStringToDecimal(inputValue: string): Number {
  let value: number;

  if (inputValue === '0.00' || Number(inputValue) === 0.00) {
    value = 0.00;
  } else if (inputValue === '') {
    value = null;
  } else {
    value = parseFloat(inputValue.toString().replace(/,/, ''));
  }

  return value;
} 

Expected Result : 

Example
const value = parseStringToDecimal("1,000.256");
console.log(value);

Output :  1000.256

Comments

Popular posts from this blog

Restrict Special Characters Using JavaScript By Copy,Paste

Send API POST Request in MS SQL Server

Implementing DIP (Dependency Inversion Principle) in .NET Core project

Aggregation and Association and Composition and Its differences with examples

Create function to convert from string to Integer using javascript

Display PDF Or Tiff Files In IFrame

Remove duplicate objects/data from an array of objects in Javascript

Restrict Special Characters in Windows Application using c#

Content Negotiation in Web API with example

Naming Conventions