0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

No.031【Python】文字列の分割②

Last updated at Posted at 2019-02-10

python-logo-master-v3-TM-flattened.png

前回に引き続き、「文字列の分割」について少し書いていきます。

 I'll write about the split of strings in python" on this page a little.

■ 文字列リストの連結

 Link between sting lists

>>> # 文字列のリストを一つの文字列へ連結:文字列メソッドjoin()
>>> # 1.'挿入する文字列'でjoin()メソッドを呼び出す
>>> # 2. 連結する文字列のリストを引数として渡す
>>> 
>>> l = ["one", "two","three"]
>>> 
>>> print(",".join(l))
one,two,three
>>> 
>>> print("\n".join(l))
one
two
three
>>> 
>>> print(" ".join(l))
one two three
>>> 
>>> 
>>> # joinを使わなくても同じ表示結果となる
>>> 
>>> l = ["one", "two","three"]
>>> print(*l, sep=',')
one,two,three
>>> print(*l, sep='\n')
one
two
three
>>> print(*l)
one two three

■ 文字数による分割:スライス

 Division by the number of characters: Slice

>>> # 文字数による分割の場合は、Sliceを使用する
>>> 
>>> s = 'abcdefg'
>>> 
>>> print(s[:3])
abc
>>> 
>>> print(s[3:])
defg
>>> # タプルとして取得、また変数に代入も可能
>>> 
>>> s_tuple = s[:3], s[3:]
>>> 
>>> print(s_tuple)
('abc', 'defg')
>>> 
>>> print(type(s_tuple))
<class 'tuple'>
>>> 
>>> s_first, s_last = s[:3], s[3:]
>>> 
>>> print(s_first)
abc
>>> 
>>> print(s_last)
defg
>>> # 3分割することの可能
>>> 
>>> s = 'abcdefghij'
>>> 
>>> s_first, s_second, s_last = s[:3], s[3:6],s[6:]
>>> 
>>> print(s_first)
abc
>>> print(s_second)
def
>>> print(s_last)
ghij
>>> # 文字数は、組み込み関数len()で取得可能、半分ずつに分割可能
>>> 
>>> s = 'abcdefghij'
>>> 
>>> half = len(s) // 2
>>> 
>>> print(half)
5
>>> 
>>> s_first, s_last = s[:half], s[half:]
>>> 
>>> print(s_first)
abcde
>>> 
>>> print(s_last)
fghij
>>> # +演算子にて連結が可能
>>> 
>>> s = 'abcdefghij'
>>> 
>>> print(half)
5
>>> s_first, s_last = s[:half], s[half:]
>>> 
>>> print(s_first + s_last)
abcdefghij
>>> # 負数や大きな数を指定した場合
>>> 
>>> "abcdefg"[-3:]
'efg'
>>> "abcdefg"[-99:]
'abcdefg'
>>> "abcdefg"[99:]
''
>>> "abcdefg"[:99]
'abcdefg'
>>> 
>>> 
>>> # スキップ指定の場合
>>> 
>>> "abcdefg"[::2]
'aceg'
>>> "abcdefg"[1::2]
'bdf'

いかがでしたでしょうか?
How was my post?

本記事は、随時に更新していきますので、
定期的な購読をよろしくお願いします。
I'll update my blogs at all times.
So, please subscribe my blogs from now on.

本記事について、
何か要望等ありましたら、気軽にメッセージをください!
If you have some requests, please leave some messages! by You-Tarin

また、「Qiita」へ投稿した内容は、随時ブログへ移動して行きたいと思いますので、よろしくお願いします。

0
0
3

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?