Python是一種流行的編程語言,可用于從文本數據中提取字符串。這里介紹一些常用的字符串操作方法。
# 創建字符串 text = "Hello, World!" # 訪問字符串中的字符 print(text[0]) # H # 訪問字符串中的子串 print(text[0:5]) # Hello # 獲取字符串長度 print(len(text)) # 13 # 查找子字符串 print(text.find("World")) # 7 print(text.find("Python")) # -1 # 替換子字符串 new_text = text.replace("World", "Python") print(new_text) # Hello, Python! # 拆分字符串 words = text.split(",") print(words) # ['Hello', ' World!'] # 連接字符串 new_text = "-".join(words) print(new_text) # Hello- World! # 轉換大小寫 print(text.upper()) # HELLO, WORLD! print(text.lower()) # hello, world!
以上是Python中一些常用的字符串操作方法。通過這些方法,我們可以輕松地實現對字符串的處理,并從文本數據中提取所需的信息。
上一篇python 打印雙引號
下一篇go的json包