Nov 21, 2000 #1 Neoport Programmer Aug 4, 2000 10 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 Nov 9, 1998 13,212 GB try $name = "\\<"; Mike michael.j.lacey@ntlworld.com Upvote 0 Downvote