A veces, más que encontrar una substring, es posible que necesitemos obtener la string que se está produciendo antes de encontrar la substring. Analicemos ciertas formas en que se puede realizar esta tarea.
Método #1: Usando la partición()
La función de partición se puede usar para realizar esta tarea en la que solo devolvemos la parte de la partición que ocurre antes de la palabra de partición.
Python3
# Python3 code to demonstrate # String till Substring # using partition() # initializing string test_string = "GeeksforGeeks is best for geeks" # initializing split word spl_word = 'best' # printing original string print("The original string : " + str(test_string)) # printing split string print("The split string : " + str(spl_word)) # using partition() # String till Substring res = test_string.partition(spl_word)[0] # print result print("String before the substring occurrence : " + res)
Producción :
The original string : GeeksforGeeks is best for geeks The split string : best String before the substring occurrence : GeeksforGeeks is
Método #2: Usando split()
La función de división también se puede aplicar para realizar esta tarea en particular, en esta función, usamos el poder de limitar la división y luego imprimimos la string anterior.
Python3
# Python3 code to demonstrate # String till Substring # using split() # initializing string test_string = "GeeksforGeeks is best for geeks" # initializing split word spl_word = 'best' # printing original string print("The original string : " + str(test_string)) # printing split string print("The split string : " + str(spl_word)) # using split() # String till Substring res = test_string.split(spl_word)[0] # print result print("String before the substring occurrence : " + res)
Producción :
The original string : GeeksforGeeks is best for geeks The split string : best String before the substring occurrence : GeeksforGeeks is
Método #3: Usando find()
Python3
# Python3 code to demonstrate # String till Substring # using find() # you can also use index(0 instead of find() # initializing string test_string = "GeeksforGeeks is best for geeks" # initializing substring spl_word = 'best' # printing original string print("The original string : " + str(test_string)) # String till Substring x=test_string.find(spl_word) res=test_string[0:x] # print result print("String before the substring occurrence : " + res)
Producción
The original string : GeeksforGeeks is best for geeks String before the substring occurrence : GeeksforGeeks is
Publicación traducida automáticamente
Artículo escrito por manjeet_04 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA