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