Java

環境
Java8
Eclipse 4.14.0

書式
1.Path getParent()
親のパスを返します。このパスが親を持たない場合はnullを返します。
2.public s ...

CentOS

# cat/etc/redhat-release
CentOS Linux release 8.3.2011
1.リポジトリを確認
# yum module list redis
CentOS Linu ...

shellscript

書式
expr 数字1 演算子 数字2
使用例

#!/bin/bashecho "加演算子--`expr 10 + 5`"echo "減演算子--`expr 10 - 5`"echo "乗演算子--`expr 1 ...

C#

書式
Convert.ToString(int型数値)
使用例

using System;namespace TestDemo{ class Program { static void Main(string[] ...

C#

書式
int 変数名A = (int)double型変数名B
使用例

using System;namespace TestDemo{ class Program { static void Main(strin ...

C#

書式
double 変数名A =int型変数名B
使用例

using System;namespace TestDemo{ class Program { static void Main(string[] ar ...

jQuery

書式
toggle(speed, )
要素の表示/非表示を、関数が呼び出される度にアニメーション付きで切り替えます。
同時に、アニメーション終了時に呼び出されるコールバック関数を指定することもできます。

jQuery

書式
.slideUp( )
要素を上にスライドしながら非表示にします
.slideDown( )
要素を下にスライドしながら表示します
使用例

<!DOCTYPE html ...

Python

使用例

str = """A001,B002,C003D004."""

実行結果
A001,
B002,
C003
D004.

Java

書式
1.public String replaceFirst(String regex,String replacement)
指定された正規表現に一致する、この文字列の最初の部分文字列に対し、指定された置換を実行し ...

Python

書式
OrderedDictオブジェクト名.update(key=value,xxx )
del OrderedDictオブジェクト名「キー」
使用例

import collectionscft = co ...

Java

書式
文字列.split(正規表現式)
使用例

package com.arkgame.study.tm;public class SplitArrDemo { public static final Strin ...

Python

書式
(, xxx)
使用例

import collectionscftA = collections.OrderedDict(k1=66, k2=77, k3=88)cftB = collection

Ruby

書式
配列名
使用例

# 取り出すcft = p cft# 配列に格納するnums = nums = 87p nums

実行結果
>ruby test1234.rb
“DD0 ...

Ruby

説明
シングルクォートを使わないでもタブ \t や改行 \n をそのまま表示してくれ、主にデバックに使用されます。
使用例

p("study skill in arkgame \n")p(535)p("study ...

Ruby

説明
引数がなければ改行のみを出力します。引数が配列の場合、その要素と改行を順に出力します。
使用例

puts("study skill in arkgame")puts(5678)puts("Study Rub ...

Python

書式
変数名=値1 if x < y else 値2
使用例

# coding: utf-8#!/usr/bin/python3x = 11y = 22 res=66 if x < y else 10 ...

JavaScript

書式
jsonオブジェクトの配列名.プロパティ;
使用例

<!DOCTYPE html><html><body><p>JSONオブジェクトの配列値にアクセスする.& ...