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

Send API POST Request in MS SQL Server

HTTP and grPC Communication protocols used in Microservices

Angular Code Optimization Techniques and Methods

CORS (Cross-Origin Resource Sharing) in .NET

Use immutable data structures to avoid unnecessary change detection In Angular

Content Negotiation in Web API with example

Map Operator in RxJs

Create Extension Method in typescript - String.IsNullOrEmpty()

How To Setup Angular 10 Environment On Windows