Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

python remove lines of string

output_String = input_String.split("
", 1)[1]
#this will get rid of the first line and keep the rest
output_String = input_String.split("
", 3)[1]
# this will get rid of the first 3 lines ecept the 2nd line and keep everything else
output_String = input_String.split("
", 4)[0]
# this will get rid of the first 4 lines ecept the first and keep any lines after the 4th line if there are any
Source by www.geeksforgeeks.org #
 
PREVIOUS NEXT
Tagged: #python #remove #lines #string
ADD COMMENT
Topic
Name
5+6 =