Triple quoted string is supported as per LRM but none of the simulator is able to compile (getting the below error) any lead will help to understand better.
module top;
string foo;
initial begin
foo = """
This is one continuous string.
Single ' and double " can
be placed throughout, and
only a triple quote will end it.
""";
$display("%0s",foo);
end
endmodule
Getting unterminated string error
, https://edaplayground.com/x/Rj4A