Now when I simple receive the text that is sent to my Arduino, it receives the data with a new line on the serial monitor after the 20 bytes that I separate into the list.
How should I read the data for receiving it correctly without the new line, all together without space or new line?
My Arduino code looks like that:
#include <SoftwareSerial.h>
const unsigned long Baudrate = 2400;
const unsigned long BaudrateBT = 2400;
In your example you are sending only less than 20 characters! Because the HC-08 module adds after every 20 byte packet a new line, I think this will not change it.
The null terminate strings perhaps.