テキストから文字列のみを抽出する方法(Pythonを使用)
正規表現を使用する方法: Pythonのreモジュールを使用して、正規表現を利用して文字列を抽出することができます。以下はその例です。import re text = "This is a sample text. 1234 This text contains numbers and words." # 正規表現パターンを定義します(数字のみを抽出) pattern = r"\d+" # マッチする部分を抽出します matches = re.findall(pattern, text) # 結果を表示します for match in matches: print(match)>>More