Changes between Initial Version and Version 1 of Ticket #3864, comment 2


Ignore:
Timestamp:
03/06/22 21:50:31 (2 years ago)
Author:
mLipok
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #3864, comment 2

    initial v1  
    33{{{#!autoit
    44
    5         ; string preparation
    6         Local $sString = ''
    7         For $iCounter = 1 To 5380
    8                 $sString &= 'x'
    9         Next
     5; string preparation
     6Local $sString = ''
     7For $iCounter = 1 To 5380
     8        $sString &= 'x'
     9Next
    1010
    11         Local Const $s_RegExp = _ ; $s_RegExp comes from Func _PathSplit(
    12                         '^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$'
     11Local Const $s_RegExp = _ ; $s_RegExp comes from Func _PathSplit(
     12                '^\h*((?:\\\\\?\\)*(\\\\[^\?\/\\]+|[A-Za-z]:)?(.*[\/\\]\h*)?((?:[^\.\/\\]|(?(?=\.[^\/\\]*\.)\.))*)?([^\/\\]*))$'
    1313
    14         StringRegExp($sString, $s_RegExp, 0)
     14StringRegExp($sString, $s_RegExp, 0)
    1515}}}
    1616