Changes between Initial Version and Version 1 of Ticket #3864, comment 2
- Timestamp:
- 03/06/22 21:50:31 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #3864, comment 2
initial v1 3 3 {{{#!autoit 4 4 5 ; string preparation6 Local $sString = ''7 For $iCounter = 1 To 53808 $sString &= 'x'9 Next5 ; string preparation 6 Local $sString = '' 7 For $iCounter = 1 To 5380 8 $sString &= 'x' 9 Next 10 10 11 Local Const $s_RegExp = _ ; $s_RegExp comes from Func _PathSplit(12 '^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$'11 Local Const $s_RegExp = _ ; $s_RegExp comes from Func _PathSplit( 12 '^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$' 13 13 14 StringRegExp($sString, $s_RegExp, 0)14 StringRegExp($sString, $s_RegExp, 0) 15 15 }}} 16 16
