>what i want to do is to make sure that it should go to the last field only and then substract the part " ?p=.* "
sed 's/\( [^ \?]*\)?[^ ]*$/\1/'
This assumes space delimited file .... replace space with any delimiter that you may choose.
>Also, could you help me to code " how to check second-last field is " referer: "
awk ' { print $(NF-2) } ' this would get you second last field
Note that there is a space between referer and URL ... hence technically these are separate fields.