简体   繁体   中英

Formula for spliting and remove words in excel

How do I remove some words in excel sheet. For examle

I have a url https://stackoverflow.com/questions/ask . I just need 'questions/ask'from that. Should cut ' https://stackoverflow.com/ ' which is common. Can anybody help me with a formula for this

Try something like this:

general version:

=MID(A1,LEN("http://stackoverflow.com/")+1,LEN(A1)-LEN("http://stackoverflow.com/"))

or shorter:

=MID(A1,26,LEN(A1)-25)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM