Java

サンプルコード
public class FileDemoListFile {
public static void main(String files =dir.listFiles();
for(File f ...

Java

Javaコード
import java.io.File;
import java.io.FilenameFilter;
public class FileDemoFileterDemo {
public ...

Java

サンプルコード
public class FileDemoMb {
public static void main(String files =File.listRoots();
for(File file:f ...

Python

環境
PyCharm 2021.3
Python 3.9.7
sqlite 3.37.0

書式
1.SQLiteに接続します
sqlite3.connect(r’dbファ ...

Oracle

1.テーブル「company」の列「company_name」にNOT NULL制約を追加する
alter table company modify company_name not null

2.テーブル「com ...

Python

1.osモジュール
import os
os.system(‘ls’)
2.commandsモジュール
import commands
commands.getstatu ...

Linux

1.python2.7のインストール
#wget
#yum install xz-libs
#xz -d Python-2.7.6.tar.xz
#ls
#tar -xvf Python-2.7 ...

Python

サンプルコード
import re
reip = re.compile(r'(?<!)(?:\d{1,3}\.){3}\d{1,3}(?!)’)
for ip in reip.findall( ...

Python

サンプルコード

import PyV8

with PyV8.JSContext() as env1:
env1.eval(“””
var_i = 1;

Python

方法1
import socket
import fcntl
import struct
def get_ip_address(ifname):
s = socket.socket(socket ...

Python

1. os.system
system(command) -> exit_status
Execute the command (a string) in a subshell.

>>&g ...

JavaScript

サンプルコード
function cftFmt(str){
var newStr = “”;
var count = 0;

if(str.indexOf(“.&# ...

JavaScript

サンプルコード
var url = window.location.href;

//拡張子付き
var fileName1 = url.match(“.+/(.+?)(.*)?$”) ...

JavaScript

正規表現式
/^(\d{1,2}|1\d\d|2\d|25)\.(\d{1,2}|1\d\d|2\d|25)\.(\d{1,2}|1\d\d|2\d|25)\.(\d{1,2}|1\d\d|2\d|25)$/
使用例 ...

JavaScript

JavaScriptコード

function checkURL(str){
if (str.match(/(http?|ftp):\/\/+?\..+\w$/i) == null) {
return fal ...

C++

サンプルコード
public static string StripHTMLTag(string strHtml)
{
string strOutMd=strHtml;
Regex regex = ne ...

C++

C#コード
public static string HtmlToTextFunc(string htmlStr)
{
if (String.IsNullOrEmpty(htmlStr))
{

Java

サンプルコード
import java.util.Calendar;

public class CalendaraddDemo {

public static void main(String[] ar ...