extract query string from a URL string

后端 未结 8 1511
抹茶落季
抹茶落季 2021-01-04 04:10

I am reading from history, and I want that when i come across a google query, I can extract the query string. I am not using request or httputility since i am simply parsing

8条回答
  •  迷失自我
    2021-01-04 04:24

    Why don't you create a code which returns the string from the q= onwards till the next &?

    For example:

    string s = historyString.Substring(url.IndexOf("q="));

    int newIndex = s.IndexOf("&");

    string newString = s.Substring(0, newIndex);

    Cheers

提交回复
热议问题