How to convert char into double?
    96 Ansichten (letzte 30 Tage)
  
       Ältere Kommentare anzeigen
    
Hello everyone,
I have following char: "2.311.592 /" And I want to convert it to double and leave numbers only, I have tried to use
new = str2double(val);
But the output was NaN, what would you recommend me to do?
3 Kommentare
Akzeptierte Antwort
Weitere Antworten (2)
  Andrei Bobrov
      
      
 am 30 Sep. 2016
        with str2double
out = str2double(regexp(val,'\d*','match'))
  Whashak Faeid
 am 25 Aug. 2020
        How can I change  '$11.75' this data type from char to doube.I want my output $11.75 as a double in data type.
Thanks in advance.  
1 Kommentar
  Stephen23
      
      
 am 25 Aug. 2020
				>> str = '$11.75';
>> val = sscanf(str,'$%f')
val =  11.750
Siehe auch
Kategorien
				Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange
			
	Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!








