only get the src value

后端 未结 2 2022
清酒与你
清酒与你 2021-01-20 06:17

I have in the database a field that will always have an tag. and also lots of text..

For example:

Hey there.. whats up?


        
2条回答
  •  失恋的感觉
    2021-01-20 06:27

    You can try this Regex pattern:-

    string pattern= Regex.Match(path, "", RegexOptions.IgnoreCase).Groups[1].Value;
    

提交回复
热议问题