Java

関数
split(String, int)
文字列を第1引数に指定した正規表現に従い、分割します。第2引数には正規表現の適用回数を指定します。
使用例

package com.arkgame.info;p ...

SQL

書式
select * from テーブル名
where 項目 like ‘%値’
使用例

SELECT * FROM Products WHERE ProductName lik ...

Maven

現象
Tomcatを起動すると下記警告メッセージが表示されます。
致命的: クラス org.springframework.web.context.ContextLoaderListener のアプリケーションリスナの ...

Vue.js

環境
Windows10 home 64bit
Vue.js 3.0.0
Google Chrome 98.0.4758.102

書式

<button v-on:click="メソッド名 ...

Windows10

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

更新内容:

In version 11.40 we improved c ...

VB.net

書式
1.1の位で切り上げる
(Math.Ceiling(数値/10)) * 10
2.10の位で切り上げる
(Math.Ceiling(数値/100)) * 100
使用例

Module ...

CSS

構文
max-width: 1.5em;
max-width: 65%;
/* キーワード値 */
max-width: none;
max-width: max-content;
ma ...

VB.net

書式
年 DateTimeオブジェクト名.Year
月 DateTimeオブジェクト名.Month
使用例

module Module1 Sub Main() ' 指定日時1 Dim dtA As New ...

Windows10

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

更新内容:

Fixed a bug where tabs were displayed while moving Chrome window
Added b ...

Windows10

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

更新内容:

New protection system incorporating extended upgra ...

System

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

更新内容:
Fix: File uploads now use a secure connection.
Fix: Permalink to file ...

SQL

書式
SELECT AVG(カラム名)
FROM テーブル名
WHERE 条件式;

使用例

select avg(price) from products;

結果
AVG(Pric ...

JavaScript

書式
1.var oldChild = node.removeChild(child);
Node.removeChild() メソッドは、 DOM から子ノードを取り除きます。取り除いたノードを返します。
2 ...

Windows10

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

更新内容:
Fixed a bug on the Log File Viewer in which a cra ...

Kotlin

書式
対象文字列.split(“,”)
使用例

fun main() { val cft = "study,skill,in,arkgame,.com" val ptn = "," val ...

Ubuntu 20.04

操作方法
# sudo apt update

# sudo apt install update-manager

# sudo apt dist-upgrade

AlmaLinux

OSの確認
# cat/etc/centos-release
AlmaLinux release 8.4 (Electric Cheetah)

1.開発ツールパッケージをインストール
# sudo ...

Node.js

1.モジュールの作成sample.js

exports.outMsg = function(){ return "this is a sample data";}

2.モジュールの読み込みmain.js

var cft ...