我有一行文本列表:textlines
這是一個字符串列表(以'\n'
結尾)。除特定值以外,刪除多次出現?
我想刪除多行出現的行,不包括那些只包含空格,換行符和製表符的行。
換句話說,如果原來的列表是:
textlines[0] = "First line\n"
textlines[1] = "Second line \n"
textlines[2] = " \n"
textlines[3] = "First line\n"
textlines[4] = " \n"
輸出列表是:
textlines[0] = "First line\n"
textlines[1] = "Second line \n"
textlines[2] = " \n"
textlines[3] = " \n"
如何做到這一點?