วิธีการแปลงสตริงที่คั่นด้วยจุลภาคเป็นรายการใน Python?


169

รับสตริงที่เป็นลำดับของค่าหลายค่าคั่นด้วยเครื่องหมายจุลภาค:

mStr = 'A,B,C,D,E' 

ฉันจะแปลงสตริงเป็นรายการได้อย่างไร

mList = ['A', 'B', 'C', 'D', 'E']

คำตอบ:


282

คุณสามารถใช้วิธี str.split

>>> my_string = 'A,B,C,D,E'
>>> my_list = my_string.split(",")
>>> print my_list
['A', 'B', 'C', 'D', 'E']

หากคุณต้องการแปลงมันเป็น tuple เพียง

>>> print tuple(my_list)
('A', 'B', 'C', 'D', 'E')

หากคุณต้องการผนวกรายการให้ลองทำดังนี้:

>>> my_list.append('F')
>>> print my_list
['A', 'B', 'C', 'D', 'E', 'F']

4
แม้ว่าการแยกสตริงว่างจะไม่ส่งคืนสิ่งที่คาดหวังไว้: "".split(",")ส่งคืน[""](รายการที่มีองค์ประกอบหนึ่งซึ่งเป็นสตริงว่าง)
johndodo

14

ในกรณีที่เป็นจำนวนเต็มที่รวมอยู่ในสตริงถ้าคุณต้องการหลีกเลี่ยงการส่งมันเป็นintรายบุคคลคุณสามารถทำได้:

mList = [int(e) if e.isdigit() else e for e in mStr.split(',')]

มันถูกเรียกว่าlist comprehensionและขึ้นอยู่กับสัญกรณ์ตัวสร้างชุด

อดีต:

>>> mStr = "1,A,B,3,4"
>>> mList = [int(e) if e.isdigit() else e for e in mStr.split(',')]
>>> mList
>>> [1,'A','B',3,4]


0

คุณสามารถใช้ฟังก์ชันนี้เพื่อแปลงสตริงอักขระเดี่ยวที่คั่นด้วยจุลภาคเป็น list-

def stringtolist(x):
    mylist=[]
    for i in range(0,len(x),2):
        mylist.append(x[i])
    return mylist

0
#splits string according to delimeters 
'''
Let's make a function that can split a string
into list according the given delimeters. 
example data: cat;dog:greff,snake/
example delimeters: ,;- /|:
'''
def string_to_splitted_array(data,delimeters):
    #result list
    res = []
    # we will add chars into sub_str until
    # reach a delimeter
    sub_str = ''
    for c in data: #iterate over data char by char
        # if we reached a delimeter, we store the result 
        if c in delimeters: 
            # avoid empty strings
            if len(sub_str)>0:
                # looks like a valid string.
                res.append(sub_str)
                # reset sub_str to start over
                sub_str = ''
        else:
            # c is not a deilmeter. then it is 
            # part of the string.
            sub_str += c
    # there may not be delimeter at end of data. 
    # if sub_str is not empty, we should att it to list. 
    if len(sub_str)>0:
        res.append(sub_str)
    # result is in res 
    return res

# test the function. 
delimeters = ',;- /|:'
# read the csv data from console. 
csv_string = input('csv string:')
#lets check if working. 
splitted_array = string_to_splitted_array(csv_string,delimeters)
print(splitted_array)

0

พิจารณาสิ่งต่อไปนี้เพื่อจัดการกับตัวพิมพ์ของสตริงว่าง:

>>> my_string = 'A,B,C,D,E'
>>> my_string.split(",") if my_string else []
['A', 'B', 'C', 'D', 'E']
>>> my_string = ""
>>> my_string.split(",") if my_string else []
[]

-1

คุณสามารถแยกสตริงนั้น,และรับรายการโดยตรง:

mStr = 'A,B,C,D,E'
list1 = mStr.split(',')
print(list1)

เอาท์พุท:

['A', 'B', 'C', 'D', 'E']

คุณสามารถแปลงเป็น n-tuple:

print(tuple(list1))

เอาท์พุท:

('A', 'B', 'C', 'D', 'E')


หวังว่ามันจะแก้ปัญหาได้ แต่โปรดเพิ่มคำอธิบายของรหัสของคุณด้วยเพื่อที่ผู้ใช้จะได้รับความเข้าใจที่สมบูรณ์แบบซึ่งเขา / เธอต้องการจริงๆ
Jaimil Patel

ดูเหมือนคำตอบที่ยอมรับแล้วซ้ำกัน(9 ปีที่แล้ว)
โทมัส
โดยการใช้ไซต์ของเรา หมายความว่าคุณได้อ่านและทำความเข้าใจนโยบายคุกกี้และนโยบายความเป็นส่วนตัวของเราแล้ว
Licensed under cc by-sa 3.0 with attribution required.