hallo!
ich steh grad ein wenig auf der leitung
wie kürze ich zb sowas ab?
[autoit]$1 = StringReplace(_Now(),".", "")
$2 = StringReplace($1,":","")
$3 = StringReplace($2, " ", "")
MsgBox(0, "",$3, 5)
mfg
hallo!
ich steh grad ein wenig auf der leitung
wie kürze ich zb sowas ab?
[autoit]$1 = StringReplace(_Now(),".", "")
$2 = StringReplace($1,":","")
$3 = StringReplace($2, " ", "")
MsgBox(0, "",$3, 5)
mfg
$3 = StringRegExpReplace(_Now(), "[.: ]", "")
MsgBox(0, "",$3, 5)
oder
[autoit]#include <Date.au3>
$3 = StringRegExpReplace(_Now(), "\D", "")
MsgBox(0, "",$3, 5)
wunderbar!
danke für die schnellen antworten!
mfg und gn8