Know SRAM used

Hello,
I want to know if it's possible to see SRAM used by a program.
In arduino I see "Binary sketch size: 25,414 bytes (of a 32,256 byte maximum)" for FLASH but is there equivalent for SRAM
because I have a program which is compiled but it don't works and when I delete some code like "client.println("");" it works.
And I don't know if html text is stored in SRAM.

Thanks
Best regards

when I delete some code like "client.println("");" it works.

Why wasn't it written "client.println(F("<script type='text/javascript'>")); ?

And I don't know if html text is stored in SRAM.

As you wrote it, it was stored in RAM

Ok thanks. I didn't use because I didn't know :roll_eyes:

And for my question : Is it possible to know RAM used ?

http://playground.arduino.cc/Code/AvailableMemory

Thanks a lot