Hi
I am new to perl...I have a file in which sections are seperated by "//************************************************"
How can i search for the asterisk character using regular expressions?
=--------------
open(IN, "<$inFile")
while (<IN>)
{
if (/^\/\/**/) #here is the error..search for multiple '*' character
{
print "Seperater found"
}
}
pls help me ...