InterviewSolution
Saved Bookmarks
| 1. |
What are escape sequence in Perl? |
|
Answer» ESCAPE sequences are special CHARACTERS that do not represent themselves when used as a part of STRING or character LITERAL. All these characters are preceded by a backslash. For example: ‘\n’, ‘\t’, ‘\\’, etc. Program: $result = "This is Mr. \" Karlos \""; print "$result \t"; print "\$result \n"; |
|