JavaScript

書式
element = document.querySelector(selectors);
Document の querySelector() メソッドは、指定されたセレクターまたはセレクターのグループに一致する ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード

更新内容:

Multiple language supported: English, Deutsch, Esp ...

Go言語

書式
1./*コメントアウト内容*/
2.//コメントアウト内容
使用例1

package mainimport ("fmt") func main() {/*11122223333*/fmt.Print ...

VB.net

書式
Public Shared Function IsMatch (input As String, pattern As String) As Boolean
正規表現と一致する箇所が見つかった場合は true。そ ...

VB.net

書式
対象文字列.Split(” “)
Split(String)
Regex コンストラクターで指定された正規表現パターンによって定義されている位置で入力文字列を分割し、部分文字列の配 ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード
majorgeeksサイトからダウンロード

更新内容:

Enhanced Detections: ...

VB.net

書式
MessageBox.Show(メッセージ, タイトル, ボタンの種類, アイコンの種類)
ボタンの種類: 「OK」、「OKCancel」、「YesNo」、「YesNoCancel」、「AbortRetryIgn ...

Swift

書式
type(of:オブジェクト名)
使用例

class Person { let target="yuu"}//Personクラスを継承class Student: Person { let str = "s ...

Windows10

ダウンロード:
提供元サイトからダウンロード(日本語版)
softpediaサイトからダウンロード
mediacoderhqサイトからダウンロード

更新内容:

Fixed CBR encodi ...

Windows10

ダウンロード:
提供元サイトからダウンロード
softpediaサイトからダウンロード

更新内容:

Improved TRIM optimization
Updated UI component ...

C++

書式
max(a,b)
min(a,b)
使用例

#include <iostream>using namespace std;int main() { cout <<"最大値:" ...

jQuery

書式
$(セレクタ名).fadeToggle();
使用例

<style> div {background-color:yellow;}</style><div id="cft"&g ...

Linux

1.説明:
Self-Monitoring, Analysis and Reporting Technology(セルフモニタリング・アナリシス アンド・リポーティング・テクノロジー、略称: S.M.A.R.T.(スマート)) ...

Linux

方法1

サービスコードのリストを表示
service –status-all

サービスコードを起動
sudo update-rc.d -f myservice default ...

Java

Javaコード:
package com.startnews24.springstu.applicationImpl;
import java.util.List;
import javax.annotatio ...

JavaScript

構文
1.decodeURIComponent(encodedURI)
エンコードされた統一資源識別子 (URI) の構成要素をデコードしたものを表す新しい文字列です。
引数encodedURI:エンコードされ ...

Windows11

環境
Windows 11 64bit

操作方法
1.「スタート」ボタン ->「設定」をクリックします。

2.「設定」画面が開きます。
「アクセシビリティ」->「マウス」をク ...

Perl

構文
if(条件式){some code}
使用例

#!/usr/bin/perluse strict;use warnings;my $n = 0;do{ if ($n == 5) { $n++; next; ...