Changeset 3905
- Timestamp:
- Mar 12, 2020, 9:41:30 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified trunk/bin/parseenv.cmd ¶
r3904 r3905 20 20 * but are not skipped when being used within strings (should be) 21 21 * - no symbols can be used within the #define values yet 22 * - strings may include \r \n and \t. 22 * - strings may include \r \n and \t 23 * - backslashes must be doubled. 23 24 * 24 25 * The XML Tag <tinclude name="filename"/> includes textfiles as part of … … 395 396 /* Check if StrSearch is a substring of StrExclude */ 396 397 p2 = POS( StrExclude, Str, pStart); 397 IF (p2 > 0 & p2 < p1) THEN398 IF (p2 > 0 & p2 <= p1) THEN 398 399 DO 399 400 /* Start after found StrExclude */ 400 pStart = p2 + LENGTH( ExcludeStr);401 pStart = p2 + LENGTH( StrExclude); 401 402 ITERATE; 402 403 END; … … 420 421 Str = StrReplace( '\r', '0d'x, Str, '\\'); 421 422 Str = StrReplace( '\t', '09'x, Str, '\\'); 422 Str = StrReplace( '\\', '\', Str); 423 /* Remove backslashes of undefined escape strings */ 424 Str = StrReplace( '\', '', Str, '\\'); 425 /* Replace exclude string at last one */ 426 Str = StrReplace( '\\', '\', Str); 423 427 424 428 RETURN( Str);
Note:
See TracChangeset
for help on using the changeset viewer.