V
vikrant
Hi everyone,
I know this not the right place to ask this question but i did not
found any group specific for discussion problem related to PCRE. But,
i believe members of this forum are having good in writing PCRE thats
why i am posting my question here.
I need ur help 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
I know this not the right place to ask this question but i did not
found any group specific for discussion problem related to PCRE. But,
i believe members of this forum are having good in writing PCRE thats
why i am posting my question here.
I need ur help 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