テキストのブロックから最後の単語を切り取る最良の方法は何ですか?
私は考えることができます
- それを(スペースで)リストに分割し、最後の項目を削除してから、リストを再連結します。
- 正規表現を使用して最後の単語を置き換えます。
現在、アプローチ#1を取っていますが、リストを連結する方法がわかりません...
content = content[position-1:position+249] # Content
words = string.split(content, ' ')
words = words[len[words] -1] # Cut of the last word
コード例は大歓迎です。