Nov 21, 2000 #1 Neoport Programmer Joined Aug 4, 2000 Messages 10 Location US Hi, I have been trying to solve this problem. I need to save the character "<" into a string. $name = "\<"; When I wrote the code above, Perl complaint, and I have no idea how to save the escape character into a string. Thanks
Hi, I have been trying to solve this problem. I need to save the character "<" into a string. $name = "\<"; When I wrote the code above, Perl complaint, and I have no idea how to save the escape character into a string. Thanks
Nov 21, 2000 #2 MikeLacey MIS Joined Nov 9, 1998 Messages 13,212 Location GB try $name = "\\<"; Mike michael.j.lacey@ntlworld.com Upvote 0 Downvote