Dim v AsVariantWithCreateObject("VBScript.RegExp")'正規表現を利用する為のオブジェクトを作成
.Pattern = "^(\d{1,2}r((\d{1})|(\d{1}(15|30|45|00)))(,|$|, )?)+$" '文字列パターンを設定
v =.test(Str.Value)'結果を格納
Debug.Print v
End With
デフォルトのブラウザーで開きます start ‘https://docs.microsoft.com/ja-jp/powershell/’ powershell script to open web address URL with default browser | LockeVN aka walker in the coding cloud
いまさらcmdだけど... Batch: Timestamp to UNIX Time - Stack Overflow create a .bat file called "getUtime.bat" @echo off echo WScript.Echo(new Date().getTime()); > %temp%\time.js cscript //nologo %temp%\time.js del %temp%\time.js and call like this "C:\>getUTime" 1430894237616