in reply to how do i pass qoutes to in the string.
In addition to using the single quotes and escaping your quotes, there are also a few operators that help: q{ STRING } acts as single quotes around the string (variables won't be interpolated), and qq{ STRING } acts as double quotes around the string. See perldoc perlop for more info on the 'q' branch =)
|
|---|