简体   繁体   中英

Return part of string between specific character pair, in string with multiple character pairs [on hold]

Text file or string:

SomeText1/SomeText2/SomeText3/SomeText4/SomeText5

#What I am looking for:
split_func(3, "/")

>>> SomeText3

Try:

s = "SomeText1/SomeText2/SomeText3/SomeText4/SomeText5"
# s.split("/") returns a list of strings, split at the "/"
# I.e. ["SomeText1", "SomeText2", "SomeText3", "SomeText4", "SomeText5"]
# Then take the second element (remembering that the count starts at 0
result = s.split("/")[2]

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