Snippets ( AutoIt String ): Difference between revisions
Jump to navigation
Jump to search
(Added StringTrimLeftUntil & StringTrimRightUntil) |
|||
Line 215: | Line 215: | ||
[[#top | Return To Contents]] | [[#top | Return To Contents]] | ||
== | == StringTrimLeftUntil == | ||
{{Snippet Header | {{Snippet Header | ||
| AuthorURL = | | AuthorURL = 89462-TheDcoder | ||
| AuthorName = | | AuthorName = TheDcoder | ||
| Desc = | | Desc = Trim a string left until it reaches the delimiter character. | ||
}} | }} | ||
<syntaxhighlight lang="autoit"> | <syntaxhighlight lang="autoit"> | ||
; | ; #FUNCTION# ==================================================================================================================== | ||
; | ; Name ..........: StringTrimLeftUntil | ||
; Description ...: Trim a string left until it reaches the delimiter charecter | |||
; Syntax ........: StringTrimLeftUntil($sDelimiter, $sString) | |||
; Parameters ....: $sDelimiter - Charecter(s) to trim until | |||
; $sString - A string value. | |||
; $iOccurrence - Trim until which occurrence of the delimiter [Default = 1st occurrence] | |||
; Return values .: Trimmed String | |||
; Author ........: TheDcoder | |||
; Modified ......: Thanks to water for the Idea | |||
; Remarks .......: This function is not case sensitive meaning "DeLiMiTeR" is same as "Delimiter" | |||
; Related .......: StringTrimLeft | |||
; Link ..........: https://www.autoitscript.com/forum/topic/139260-autoit-snippets/?do=findComment&comment=1250764 | |||
; Example .......: No | |||
; =============================================================================================================================== | |||
Func StringTrimLeftUntil($sDelimiter, $sString, $iOccurrence = 1) | |||
$iDelimiterLen = StringLen($sDelimiter) | |||
$sString = StringTrimLeft($sString, StringInStr($sString, $sDelimiter, 2, $iOccurrence) + ($iDelimiterLen - 1)) ; This is a little hard to explain: | |||
#cs =========================================================================================================================================| | |||
| What it does is: | | |||
| 1. Find the delimiter's position in the string (StringInStr) | | |||
| 2. Add delimiter's Length to delimiters position (I remove 1 for delimiter's length because StringInStr already contains that 1 charecter) | | |||
| 3. Trim the string :) | | |||
#ce =========================================================================================================================================| | |||
Return $sString ; Return the String :D | |||
EndFunc ;==>StringTrimLeftUntil | |||
</syntaxhighlight> | |||
; #FUNCTION# =================================================================== | [[#top | Return To Contents]] | ||
; Name | |||
; Description ...: | == StringTrimRightUntil == | ||
; Syntax | |||
; Parameters ....: $ | {{Snippet Header | ||
; $ | | AuthorURL = 89462-TheDcoder | ||
; | | AuthorName = TheDcoder | ||
; | | Desc = Trim a string right until it reaches the delimiter character. | ||
; | }} | ||
; | |||
<syntaxhighlight lang="autoit"> | |||
; | ; #FUNCTION# ==================================================================================================================== | ||
; | ; Name ..........: StringTrimRightUntil | ||
; | ; Description ...: Trim a string right until it reaches the delimiter charecter | ||
; | ; Syntax ........: StringTrimRightUntil($sDelimiter, $sString) | ||
; ============================================================================== | ; Parameters ....: $sDelimiter - Charecter(s) to trim until | ||
Func | ; $sString - A string value. | ||
; $iOccurrence - Trim until which occurrence of the delimiter [Default = 1st occurrence] | |||
; Return values .: Trimmed String | |||
; Author ........: TheDcoder | |||
; Modified ......: Me | |||
; Remarks .......: This function is not case sensitive meaning "DeLiMiTeR" is same as "Delimiter" | |||
; Related .......: StringTrimRight | |||
; Link ..........: https://www.autoitscript.com/forum/topic/139260-autoit-snippets/?do=findComment&comment=1250764 | |||
; Example .......: No | |||
; =============================================================================================================================== | |||
Func StringTrimRightUntil($sDelimiter, $sString, $iOccurrence = 1) | |||
$iStringLen = StringLen($sString) ; We need string's len | |||
$iDelimiterLen = StringLen($sDelimiter) ; We need delimiter's len too | |||
$sString = StringTrimRight($sString, ($iStringLen - StringInStr($sString, $sDelimiter, 2, $iOccurrence)) + $iDelimiterLen) ; Explanation: | |||
#cs ============================================================================================| | |||
Return $ | | 1. Find delimiters postition | | ||
EndFunc ;==> | | 2. Remove String's len from delimiters position to invert the trimming process (to the right) | | ||
| 3. Add the delimiter's len to trim the delimiter | | |||
| 4. Trim the string!!! | | |||
#ce ============================================================================================| | |||
Return $sString ; Return the String | |||
EndFunc ;==>StringTrimRightUntil | |||
</syntaxhighlight> | </syntaxhighlight> | ||
[[#top | Return To Contents]] | [[#top | Return To Contents]] |
Revision as of 11:31, 12 June 2015
_StringEqualSplit
Author: czardas
#include <Array.au3>
Local $aArray = _StringEqualSplit("12345678910", 3)
_ArrayDisplay($aArray)
Func _StringEqualSplit($sString, $iNumChars)
If Not IsString($sString) Or $sString = "" Then Return SetError(1, 0, 0)
If Not IsInt($iNumChars) Or $iNumChars < 1 Then Return SetError(2, 0, 0)
Return StringRegExp($sString, "(?s).{1," & $iNumChars & "}", 3)
EndFunc
_StringGetChrCount
Author: GEOSoft
Check how many times the word 'test' appears in the string. 1 = Case-sensitive or 0 = Non Case-sensitive.
; Check how many times the word 'test' appears in the string. 1 = Case-sensitive or 0 = Non Case-sensitive.
ConsoleWrite(_StringGetChrCount("test teste test", "TEST", 0) & @CRLF)
Func _StringGetChrCount($sStr, $sChr, $iCase = 0)
If $iCase <> 0 Then
$iCase = 1
EndIf
StringReplace($sStr, $sChr, $sChr, 0, $iCase)
Return @extended
EndFunc ;==>_StringGetChrCount
_StringEqualSplit
Author: czardas
Modified: guinness
Splits a string into an equal number of characters. The 0th index returns the number of items.
#include <Array.au3>
#include <String.au3>
Local $aSplitEqual = _StringEqualSplit('abcdefghijklmnopqrstuvwxyz', 5)
_ArrayDisplay($aSplitEqual)
; By czardas & modified by guinness >> http://www.autoitscript.com/forum/topic/139260-autoit-snippets/page__st__20#entry992149
; Version: 1.10. AutoIt: V3.3.8.1
; Splits a string into an equal number of characters. The 0th index returns the number of items.
Func _StringEqualSplit($sString, $iNumChars)
If IsString($sString) = 0 Or $sString == '' Then
Return SetError(1, 0, 0)
EndIf
If IsInt($iNumChars) = 0 Or $iNumChars < 1 Then
Return SetError(2, 0, 0)
EndIf
Local $aReturn = StringRegExp(_StringRepeat('0', 5) & $sString, '(?s).{1,' & $iNumChars & '}', 3)
$aReturn[0] = UBound($aReturn, 1) - 1
Return $aReturn
EndFunc ;==>_StringEqualSplit
_StringIsNum
Author: smartee
ConsoleWrite(StringIsNum('Example') & @CRLF)
ConsoleWrite(StringIsNum('123456') & @CRLF)
ConsoleWrite(StringIsNum('Example & 123456') & @CRLF)
Func StringIsNum($sString)
Return StringRegExp($sString, "^([0-9]*(\.[0-9]+){1}|[0-9]+(\.[0-9]*){0,1})$") = 1
EndFunc ;==>StringIsNum
_StringRemoveLine
Author: SmOke_N
Global $string = 'This is an example' & @CRLF & 'Of deleting a line' & @CRLF & 'If you know at least the beginning text of the line.'
MsgBox(0, 'Original', $string)
Global $deleteline = _StringRemoveLine($string, 'Of deleting')
MsgBox(0, 'Deleted Line', $deleteline)
Func _StringRemoveLine($hFile, $sDelete)
If FileExists($hFile) Then $hFile = FileRead($hFile);Remove If FileExists($hFile) Then << only
Local $nSNS = StringInStr($hFile, @CRLF & $sDelete) - 1
Local $sSFH = StringLeft($hFile, $nSNS)
Local $sRL = StringTrimLeft($hFile, StringLen($sSFH) + 2)
Local $sLLEN = StringLen(StringLeft($sRL, StringInStr($sRL, @CRLF)))
If Not $sLLEN Then $sLLEN = StringLen($sRL)
Return $sSFH & StringTrimLeft($hFile, $sLLEN + $nSNS + 2)
EndFunc ;==>_StringRemoveLine()
_StringReplaceBlank
Author: SmOke_N
Remove blank lines from a File
; Remove blank lines from a File
Local $sString = "I am a string" & @CRLF & @CRLF & _
"With Empty Lines" & @CRLF & @CRLF & _
"Please Remove those empty lines"
MsgBox(4096, "Before", $sString)
$sString = _StringReplaceBlank($sString, 1)
MsgBox(4096, "Replaced: " & @extended & " lines.", $sString)
Func _StringReplaceBlank($sString, $sSpaces = "")
If $sSpaces Then
$sSpaces = "\s*"
EndIf
$sString = StringRegExpReplace($sString, "(?s)\r\n" & $sSpaces & "\r\n", @CRLF)
If @extended Then
Return SetError(0, @extended, $sString)
EndIf
Return SetError(1, 0, $sString)
EndFunc ;==>_StringReplaceBlank
_StringTrimLeftIsEqual
Author: guinness
Strip a character/word from the leftmost part of a string.
ConsoleWrite(_StringTrimLeftIsEqual('C:\Test', 'C:\') & @CRLF) ; Returns Test as the string 'C:\' is stripped from the left.
ConsoleWrite(_StringTrimLeftIsEqual('C:\Test\', 'C') & @CRLF) ; Returns :\Test as the character 'C' is stripped from the left.
ConsoleWrite(_StringTrimLeftIsEqual('C:\Test\', 'Test') & @CRLF) ; Returns the initial string as the string 'Test' was not found to the leftmost part of the string.
; Version: 1.00. AutoIt: V3.3.8.1
; Strip a character/word from the leftmost part of a string.
Func _StringTrimLeftIsEqual($sString, $sStringTrim)
Local $aStringTrim[2] = [0, StringLen($sStringTrim)]
Return StringTrimLeft($sString, $aStringTrim[Number(StringLeft($sString, $aStringTrim[1]) == $sStringTrim)])
EndFunc ;==>_StringTrimLeftIsEqual
_StringTrimRightIsEqual
Author: guinness
Strip a character/word from the rightmost part of a string.
ConsoleWrite(_StringTrimRightIsEqual('C:\Test', 'Test') & @CRLF) ; Returns C:\ as the string 'Test' is stripped from the right.
ConsoleWrite(_StringTrimRightIsEqual('C:\Test\', '\') & @CRLF) ; Returns C:\Test as the character '\' is stripped from the right.
ConsoleWrite(_StringTrimRightIsEqual('C:\Test\', 'Test') & @CRLF) ; Returns the initial string as the string 'Test' was not found to the rightmost part of the string.
; Version: 1.00. AutoIt: V3.3.8.1
; Strip a character/word from the rightmost part of a string.
Func _StringTrimRightIsEqual($sString, $sStringTrim)
Local $aStringTrim[2] = [0, StringLen($sStringTrim)]
Return StringTrimRight($sString, $aStringTrim[Number(StringRight($sString, $aStringTrim[1]) == $sStringTrim)])
EndFunc ;==>_StringTrimRightIsEqual
StringTrimLeftUntil
Author: TheDcoder
Trim a string left until it reaches the delimiter character.
; #FUNCTION# ====================================================================================================================
; Name ..........: StringTrimLeftUntil
; Description ...: Trim a string left until it reaches the delimiter charecter
; Syntax ........: StringTrimLeftUntil($sDelimiter, $sString)
; Parameters ....: $sDelimiter - Charecter(s) to trim until
; $sString - A string value.
; $iOccurrence - Trim until which occurrence of the delimiter [Default = 1st occurrence]
; Return values .: Trimmed String
; Author ........: TheDcoder
; Modified ......: Thanks to water for the Idea
; Remarks .......: This function is not case sensitive meaning "DeLiMiTeR" is same as "Delimiter"
; Related .......: StringTrimLeft
; Link ..........: https://www.autoitscript.com/forum/topic/139260-autoit-snippets/?do=findComment&comment=1250764
; Example .......: No
; ===============================================================================================================================
Func StringTrimLeftUntil($sDelimiter, $sString, $iOccurrence = 1)
$iDelimiterLen = StringLen($sDelimiter)
$sString = StringTrimLeft($sString, StringInStr($sString, $sDelimiter, 2, $iOccurrence) + ($iDelimiterLen - 1)) ; This is a little hard to explain:
#cs =========================================================================================================================================|
| What it does is: |
| 1. Find the delimiter's position in the string (StringInStr) |
| 2. Add delimiter's Length to delimiters position (I remove 1 for delimiter's length because StringInStr already contains that 1 charecter) |
| 3. Trim the string :) |
#ce =========================================================================================================================================|
Return $sString ; Return the String :D
EndFunc ;==>StringTrimLeftUntil
StringTrimRightUntil
Author: TheDcoder
Trim a string right until it reaches the delimiter character.
; #FUNCTION# ====================================================================================================================
; Name ..........: StringTrimRightUntil
; Description ...: Trim a string right until it reaches the delimiter charecter
; Syntax ........: StringTrimRightUntil($sDelimiter, $sString)
; Parameters ....: $sDelimiter - Charecter(s) to trim until
; $sString - A string value.
; $iOccurrence - Trim until which occurrence of the delimiter [Default = 1st occurrence]
; Return values .: Trimmed String
; Author ........: TheDcoder
; Modified ......: Me
; Remarks .......: This function is not case sensitive meaning "DeLiMiTeR" is same as "Delimiter"
; Related .......: StringTrimRight
; Link ..........: https://www.autoitscript.com/forum/topic/139260-autoit-snippets/?do=findComment&comment=1250764
; Example .......: No
; ===============================================================================================================================
Func StringTrimRightUntil($sDelimiter, $sString, $iOccurrence = 1)
$iStringLen = StringLen($sString) ; We need string's len
$iDelimiterLen = StringLen($sDelimiter) ; We need delimiter's len too
$sString = StringTrimRight($sString, ($iStringLen - StringInStr($sString, $sDelimiter, 2, $iOccurrence)) + $iDelimiterLen) ; Explanation:
#cs ============================================================================================|
| 1. Find delimiters postition |
| 2. Remove String's len from delimiters position to invert the trimming process (to the right) |
| 3. Add the delimiter's len to trim the delimiter |
| 4. Trim the string!!! |
#ce ============================================================================================|
Return $sString ; Return the String
EndFunc ;==>StringTrimRightUntil