CodeMirror 5.52.0ダウンロード
更新内容
Fix a bug in handling of bidi text with Arabic numbers in a right-to-left editor.
Fix a crash when c ...
Grafana 6.6.2ダウンロード
更新内容
@grafana/ui: Fix displaying of bars in React Graph. #21968, @ivanahuckovaAPI: Fix redirect issue when con ...
「C#」文字列のMD5値を取得するサンプル
書式
MD5.Create().ComputeHash(Encoding.UTF8.GetBytes(文字列))
使用例
「javascript」replaceメソッドの使い方
書式
str.replace(pattern,rep)
説明
str:置き換え対象文字列 pattern:正規表現 rep:置き換え後文字列
サンプルコード
var phone = R ...
「JavaScript」search()で文字列を検索する
書式
str.search(pattern)
指定された正規表現で最初にマッチした文字位置を返す。
サンプルコード
var city = “TOKYOCFTG”;
v ...
「javascript」RegExp() のフラグの使い方
i 大文字・小文字を区別しない
“def”.match(/DEF/)//マッチしない
“def”.match(/DEF/i)//マッチする;
m 複数行に対し ...
「JavaScript入門」match(regexp)で文字列に対してマッチングをするサンプル
サンプルコード
cft = "77:88:99:00".match(/\d+/g);console.log(cft.length); console.log(cft); console.log(cft); console.log ...「PHP」正規表現で文字列のスペースを削除する
1.文字列の先頭のスペース(半角、全角)を削除
$usernamer = preg_replace(‘/^+/u‘, ”, $username);
2.文字列の末尾のスペース(半 ...
「PHP」関数を書くサンプルコード
サンプルコード
<?php
function writeName()
{
echo “This is a test data”;
}
echo R ...
「TypeScript」関数を書くサンプルコード
//返り値がある
function add(a: number, b: number): number{
//some code
return a + b
}
//返り値がない
fu ...
「Struts」html:radioタグを利用するサンプル
サンプルコード
<html:radio property=”city” value=”oosaka”/>大阪
<html:radio property= ...
Gitea 1.11.0 ダウンロード
更新内容
In this release, we’ve merged 481 pull requests. That’s the highest amount since 1.2.0 (483)!
Special ...
「Spring」c:forEach タグを利用するサンプル
JAVAコード
List cftLst = new ArrayList();UserBean userBean = new UserBean();userBean.setSchool("東京大学");userBean.setAd ...「struts」html:multiboxタグを利用するサンプル
サンプルコード1
<html:multibox property=”city” value=”oosaka”/>大阪
<BR>
<h ...
Cygwin 3.1.4ダウンロード
更新内容
– Allow symlinks to be opened with O_PATH | O_NOFOLLOW
– Allow the pathname argument to re ...
ImageMagick 7.0.9-24ダウンロード
概要
Use ImageMagick® to create, edit, compose, or convert bitmap images. It can read and write images in a varie ...
Rocket.Chat 3.0.1ダウンロード
更新内容
UiKit not updating new actionIds received as responses from actions (#16624)Regression: Jitsi on external ...
[Java]FileInputStreamとBufferedInputStreamでpdfファイルを読み込む
ServletOutputStream
バイナリデータをクライアントに送信するための出力ストリームを提供します。ServletOutputStream オブジェクトは、通常 ServletResponse.getOutputS ...