Advertisement
name22

_StringGetLine

Apr 7th, 2013
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
AutoIt 0.38 KB | None | 0 0
  1. Func _StringGetLine($sSearchString, $sSubString, $iCasesense = 0, $iOccurence = 1, $iStart = 1)
  2.     ; -Author: name22 (www.autoit.de)
  3.     Local $iSearchPos = StringInStr($sSearchString, $sSubString, $iCasesense, $iOccurence, $iStart)
  4.     If @error Then Return SetError(1, 0, 0)
  5.     StringReplace(StringLeft($sSearchString, $iSearchPos), @CRLF, "")
  6.     Return SetError(0, 0, @extended + 1)
  7. EndFunc
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement