0
2

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.

よく使う演算子一覧

Posted at

演算子一覧

算術演算子

記号 効果
+ 加算
- 減算(マイナス符号)
* 乗算
/ 除算
% 余り
** 累乗
. 文字列結合

代入演算子

記号 効果
= 代入
+= 加算して代入
-= 減算して代入
*= 乗算して代入
/= 除算して代入
%= 乗余して代入
**= 累乗して代入
.= 文字列として結合(追加)

等価比較演算子

記号 効果
 == 値が等しければtrue
 != 値が等しくなければtrue
 > 値が大きければtrue
 < 値が小さければtrue
 >= 値が同じか大きければtrue
 <= 値が同じが小さければtrue
 eq 文字列として等しければtrue
 ne 文字列として等しくなければture
 lt 文字コードが大きければtrue
 gt 文字コードが小さければtrue
 le 文字コードが同じか大きければtrue
 ge 文字コードが同じか小さければture
 cmp 大きければ-1、等しければ0、小さければ1
 =~ 正規表現。指定文字列があればtrue
 !~ 正規表現。指定文字列がなければtrue
 ! 否定。真のとき偽、偽のとき真
 <=> 値が大きければ-1、等しければ0、小さければ1
0
2
1

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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?