Hi, Can u guys help me out in writing the pcre for the following string
string :- ftp:\\abnssjs%20jfdhjdh.htc%00.mnd Now, what i need to match is "ftp:" "anything in between except i.e ^(%00)" followed by "%00" then Dot What i have tried so far is 1. /ftp:.*%00./i but .* match any thing including %00 (except newline) 2. /ftp:(^\%00)*./i It's not working. 3. /ftp:^(%00)*./i It's not working. The problem is ignore any character till particular string i.e "%00" not come. So,please help me out. Regards, Vikrant
