Ruby

使用例

cft = {:A001 => "11", :B002 => "22", :C003=> "33"}p cftcft = {A001: "121", B002: "212", D004: "323"}p ...

Ruby

書式
open(ファイル名)
使用例

f = open("test007.txt") while strLine = f.gets p strLineend f.close

 

Ruby

書式
.push(値)

使用例

cftArr= cftArr.push("D004") print("result1\n")p cftArr.join('-')print("result2\n")cftArr ...

Ruby

書式
1.open(ファイル名).each do
2.File.foreach(ファイル名)do
使用例1

File.foreach("sample.txt") do |strRes| p strRese ...

Ruby

書式
eval 配列名.join(“+”)
使用例

#!/usr/bin/ruby#クラスSampleの定義class Sample #文字列を出力 def testFunc cft= p ...

Ruby

書式
配列名sum
使用例

#!/usr/bin/ruby#クラスSampleの定義class Sample #文字列を出力 def testFunc cft= p cft.sum endend#インスタンスを作 ...

Ruby

書式
配列の先頭を削除
配列名.shift()

配列の最後を削除
配列名.pop()
使用例

cftA=cftB=p cftAcftA.shift()puts "配列の先頭の要素削除後 ...

Ruby

書式
配列名.delete(値)
使用例

#!/usr/bin/ruby#クラスSampleの定義class Sample #文字列を出力 def testFunc cft=, , ] p "2次元配列の要素を出 ...

Ruby

書式
配列名..each.with_index(0) do |num, index|
使用例

#!/usr/bin/ruby#クラスSampleの定義class Sample #文字列を出力 def testFu ...

Ruby

1.sublimeをダウンロード
URL:

2.sublimeのnodejsプラグインをダウンロード

3.zipファイルを解凍し、フォルダーを”Nodejs”にリネーム

Ruby

1.システムのインストールに必要なパッケージ
Xcodeのインストール

Homebrewのインストール
( ruby -e “$(curl -fsSL

2.RVMをインスト

Ruby

操作手順:

1.gem
gem ‘activeadmin’,github: ‘activeadmin’
gem ‘devise’

Ruby

書式
配列名.push(値)
使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-cftArr=, ] cftArr.push()puts "result1\n"p cftArrp ...

Ruby

1.システムの必要なパッケージをインストール
sudo apt-get install -y build-essential openssl curl libcurl3-dev libreadline6 libreadline ...

Ruby

python2.x:
wget -O – | sudo python

python3.x
wget -O – | sudo python3.4

参考サイト  ...

Ruby

書式
文字列.length()
文字列.length
使用例

p "長さ:"p "arkgame".length()p "()を省略 長さ:"p "arkgame".lengthp "小文字2:" p " ...

Ruby

書式
配列名 +=「値」
配列名 <<「値」
使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-cftA= cftA += puts "+演算子 result ...

Ruby

書式
return 値
使用例

#!/usr/bin/ruby# -*- coding: UTF-8 -*-#戻り値メソッドAdef testA(nn) return nn + 2end#戻り値メソッドBdef ...