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

Restrict Special Characters Using JavaScript By Copy,Paste

CORS (Cross-Origin Resource Sharing) in .NET

Configure the API gateway in Microservices Architecture with example in .NET Core

Create function to convert from string to Integer using javascript

Export to Excel in Angular 6 | 7 | 8 | 9 | 10

Difference of High-Level Design (HLD) and Low-Level Design (LLD)

Restrict Special Characters in Windows Application using c#

RxJs Operators in Angular

How to Create Custom DialogBox using JQuery