Posted inJavascript 文字列が別の文字列で始まるかどうかを確認するJavaScriptプログラム Posted by By admin January 24, 2021 例1:startsWith()の使用 // program to check if a string starts with another string const string =…
Posted inJavascript ランダムな文字列を生成するJavaScriptプログラム Posted by By admin January 24, 2021 例1:ランダムな文字列を生成する // program to generate random strings // declare all characters const characters ='ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789'; function…
Posted inJavascript 数値を通貨文字列としてフォーマットするJavaScriptプログラム Posted by By admin January 24, 2021 例1:数値を通貨文字列としてフォーマットする // program to format numbers as currency string const formatter = new Intl.NumberFormat('en-US', {…
Posted inJavascript 複数行の文字列を作成するJavaScriptプログラム Posted by By admin January 24, 2021 例1:+を使用して複数行の文字列を作成する // program to create a multiline strings // using the + operator const message…
Posted inJavascript 文字列のすべての出現を置き換えるJavaScriptプログラム Posted by By admin January 24, 2021 例1:正規表現を使用して文字列のすべての出現を置き換える // program to replace all occurrence of a string const string = 'Mr Red…
Posted inJavascript キーと値のペアをオブジェクトに追加するJavaScriptプログラム Posted by By admin January 24, 2021 例1:ドット表記を使用してオブジェクトにキーと値のペアを追加する // program to add a key/value pair to an object const person = {…
Posted inJavascript オブジェクト内のキー/プロパティの数をカウントするJavaScriptプログラム Posted by By admin January 24, 2021 例1:for ... inを使用してオブジェクトのキーの数を数える // program to count the number of keys/properties in an object const…
Posted inJavascript 2つのオブジェクトのプロパティをマージするJavaScriptプログラム Posted by By admin January 24, 2021 例1:Object.assign()を使用して2つのオブジェクトのプロパティをマージする // program to merge property of two objects // object 1 const person =…
Posted inPython ファイルのハッシュを見つけるPythonプログラム Posted by By admin January 24, 2021 ハッシュ関数は任意の量のデータを受け取り、固定長のビット文字列を返します。 関数の出力はダイジェストメッセージと呼ばれます。 これらは、認証目的の暗号化で広く使用されています。 MD5、SHA-1などの多くのハッシュ関数があります。詳細については、このページを参照してください 暗号化におけるハッシュ関数。 この例では、ファイルをハッシュする方法を説明します。 SHA-1ハッシュアルゴリズムを使用します。 SHA-1のダイジェストは160ビット長です。 一部のファイルはメモリに一度に収まるほど大きいため、ファイルからデータを一度にフィードすることはありません。 ファイルを小さなチャンクに分割すると、プロセスメモリが効率的になります。 ハッシュを見つけるためのソースコード # Python rogram to…
Posted inJavascript オブジェクトをループするJavaScriptプログラム Posted by By admin January 24, 2021 例1:for ... inを使用してオブジェクトをループする // program to loop through an object using for...in loop const student…