Advertisement
Guest User

Untitled

a guest
Apr 21st, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.22 KB | None | 0 0
  1. $data = '347201247'
  2. $newdata = ""
  3. While 1
  4.     If StringLen($data) <= 3 Then
  5.         $newdata &= '+' & $data
  6.         ExitLoop
  7.     EndIf
  8.     $newdata &= "+" & StringLeft($data, 3)
  9.     $data = StringMid($data, 4, -1)
  10. WEnd
  11. MsgBox(0, '', $newdata)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement