2010年
5月
1
2 3 4 5 6 7 8
9 10 11 12 13 14 15
16 17 18 19 20 21 22
23 24 25 26 27 28 29
30 31

setup diary

2007|12|
2008|01|02|03|04|05|06|07|08|09|10|11|12|
2009|01|02|03|04|05|06|07|08|09|10|11|12|
2010|01|02|03|04|05|06|07|08|09|10|11|12|
2011|01|02|03|04|05|06|07|08|09|10|11|12|
2012|01|02|03|04|05|06|07|08|10|11|12|
2013|01|02|03|04|05|06|07|08|09|10|11|12|
2014|01|02|03|04|06|08|11|
2015|01|02|03|04|05|06|07|08|10|11|12|
2016|01|02|03|04|05|06|07|08|09|10|11|12|
2017|01|02|03|04|05|06|07|08|09|10|11|12|
2018|01|02|03|04|05|06|07|08|09|10|11|12|
2019|01|02|03|04|05|06|07|08|09|10|11|12|
2020|01|02|03|04|05|06|07|08|09|10|11|12|
2021|01|02|03|04|05|06|07|08|09|10|11|12|
2022|01|02|03|04|05|06|07|08|09|10|11|12|
2023|01|02|03|04|05|06|07|08|09|10|11|

2010-05-08 rubyとpythonのstring

_ 文字列に関するコマンドの違い

文字列に関するpythonとrubyコマンドをまとめてみたが、文字列操作はややこしく、表では表しきれていない部分も多い。
pythonruby 1.8 and 1.9
s="2010's"s="2010's" or %Q(2010's)
s='"2010"'s=%Q'"2010"'
s=r'c:\user's='c:\user' or %q(c:\user)
s=u'\u9300's="\u9300"(1.9)
s=u'\U00028b46's="\u{028b46}"(1.9)
s="%dK,%fPa"%(273,1024)s="%dK,%fPa"%[273,1024]
s="""firsts="first
second""""second"
s[2]s[2,1] or s[2].chr(1.8) and s[2](1.9)
s[1:3]s[1...3] or slice(1...3)
len(s)s.size or s.length
int("1")"1".to_i
float("3.14")"3.14".to_f
s.count('0')s.count('0')
s.capitalize()s.capitalize
s.swapcase()s.swapcase
s.upper()s.upcase
s.lower()s.downcase
s.center(10)s.center(10)
s.ljust(10)s.ljust(10)
s.rjust(10)s.rjust(10)
s.strip()s.strip
s.lstrip()s.lstrip
s.rstrip()s.rstrip
s.find('1')s.index('1')
s.rfind('1')s.rindex('1')
s.split(',')s.split(/,/)
",".join(["a","b"])["a","b"].join(",")
s.replace('a','A')s.gsub!(/a/){'A'}
s.replace('a','A',1)s.sub!(/a/){'A'}
pythonでは、シングルクォートとダブルクォートの違いはほとんど無いが、rubyではダブルクォートではバックスラッシュ記法や文字列展開を行うという大きな違いがある。pythonのraw文字列は便利であるが、rubyではシングルクォートに対応するのだろう。しかし、いずれも最後の文字がバックスラッシュだとうまく動かない。pythonのトリプルクォートは、rubyのhere documentに対応するのかも知れないが、rubyのダブルクォートでも改行ができる。rubyのユニコード対応は実質1.9からのようだ。ちなみに、上の例はある元素の中国語です。また、文字列をindexで指定して取り出す場合には、ruby1.8とruby1.9でまったく動作が異なる。1.8は数値になるのでCと同じ感じで、1.9では文字なのでpythonと同じと言えるのだろう。それから、pythonはバッククォートが無いようだ。