hp051247767 当前离线
列兵
apang 当前离线
上将
sed -r "s/ +([^ ]+)$/;\1/g" test.txt>test1.txt复制代码
TOP
CrLf 当前离线
论坛巡查
sed -r "s/(.*) /\1;/" test.txt>test1.txt复制代码
评分人数
sed -r "s/(.*[^ ]) +/\1;/" a.txt>b.txt复制代码
sed -r "s/(.*\S)\s+/\1;/" a.txt>b.txt复制代码
sed -r "s/(.*)(( +))/\1;/"复制代码
Set re = New RegExp re.Pattern = "((.).(.))." s = re.Replace("abcd", "$1, $2, $3") MsgBox s复制代码
C:\Windows\System32>echo,abcd|sed -r "s/((.).(.))./\1, \2, \3/" abc, a, c C:\Windows\System32>
523066680 (消遣区)当前离线
版主