Top > VBScript > Left , Mid , Right
Option Explicit Dim str str = "achaporutepiipo" WScript.Echo Left( str , 4 ) ' 結果 → acha WScript.Echo Mid( str , 5 , 6 ) ' 結果 → porute WScript.Echo Right( str , 5 ) ' 結果 → piipo