A veces, más que encontrar una substring, es posible que necesitemos obtener la string que se produce después de que se haya encontrado la substring. Analicemos ciertas formas en que se puede realizar esta tarea. Método #1: Uso de la partición() La función de partición se puede usar para realizar esta tarea en la que simplemente devolvemos la parte de la partición que aparece después de la palabra de partición.
Python3
# Python3 code to demonstrate # Get String after substring occurrence # 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() # Get String after substring occurrence res = test_string.split(spl_word, 1) splitString = res[1] # print result print("String after the substring occurrence : " + splitString)
The original string : GeeksforGeeks is best for geeks The split string : best String after the substring occurrence : for geeks
Método #2: Usar split() La función split 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 posterior.
Python3
# Python3 code to demonstrate # Get String after substring occurrence # 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() # Get String after substring occurrence res = test_string.split(spl_word, 1) # print result print("String after the substring occurrence : " + res[1])
The original string : GeeksforGeeks is best for geeks The split string : best String after the substring occurrence : for geeks
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