1.

State The Working Process Of Decimal_strip Function?

Answer»
  • A decimal STRIP takes the decimal values out of the data.
  • It trims any leading zeros
  • The result is a VALID decimal number

Ex: 
decimal_strip("-0184o") := "-184" 
decimal_strip("oxyas97abc") := "97" 
decimal_strip("+$78ab=-*&^*&%cdw") := "78" 
decimal_strip("Honda") "0"

Ex: 
decimal_strip("-0184o") := "-184" 
decimal_strip("oxyas97abc") := "97" 
decimal_strip("+$78ab=-*&^*&%cdw") := "78" 
decimal_strip("Honda") "0"



Discussion

No Comment Found