Oh, I see.
receive the entire message before doing math on the message.
Did you try this
while(SUART.available() > 0)
{
String s = SUART.readString();
s.remove(s.length() - 1);
s.remove(s.length() - 2);
s.remove(0,2);
s.replace(" ", "");
Serial.println(s);
value = s.toInt();
float real_value = value*0.75;
Serial.println(real_value);
}
s=100;
Serial.print( "s " );
Serial.print ( s );
real_value = float(s)*.075f;
Serial.print( " real_value " );
Serial.print (real_value,6 );
Serial.println(); <<<????? does it print a float? If so then you are receiving the serial incorrectly.
delay(10000);
}