regsub.c
来自「开放源码的编译器open watcom 1.6.0版的源代码」· C语言 代码 · 共 210 行
C
210 行
/****************************************************************************
*
* Open Watcom Project
*
* Portions Copyright (c) 1983-2002 Sybase, Inc. All Rights Reserved.
*
* ========================================================================
*
* This file contains Original Code and/or Modifications of Original
* Code as defined in and that are subject to the Sybase Open Watcom
* Public License version 1.0 (the 'License'). You may not use this file
* except in compliance with the License. BY USING THIS FILE YOU AGREE TO
* ALL TERMS AND CONDITIONS OF THE LICENSE. A copy of the License is
* provided with the Original Code and Modifications, and is also
* available at www.sybase.com/developer/opensource.
*
* The Original Code and all software distributed under the License are
* distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
* EXPRESS OR IMPLIED, AND SYBASE AND ALL CONTRIBUTORS HEREBY DISCLAIM
* ALL SUCH WARRANTIES, INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR
* NON-INFRINGEMENT. Please see the License for the specific language
* governing rights and limitations under the License.
*
* ========================================================================
*
* Description: WHEN YOU FIGURE OUT WHAT THIS FILE DOES, PLEASE
* DESCRIBE IT HERE!
*
****************************************************************************/
#include <stdio.h>
#include <string.h>
#include <ctype.h>
#include <stdlib.h>
#include "vi.h"
#include "rxsupp.h"
extern void Lead( char c, int num, char *buff );
#ifndef CHARBITS
#define UCHARAT(p) ((int)*(unsigned char *)(p))
#else
#define UCHARAT(p) ((int)*(p)&CHARBITS)
#endif
/*
* RegSub - perform substitutions after a regexp match
*/
int RegSub( regexp *prog, char *source, char *dest, linenum lineno )
{
char *src,*dst,c;
int no,len,splitit = FALSE;
bool upper_flag=FALSE,lower_flag=FALSE,perm_flag=FALSE;
char *tmp;
char buff[MAX_STR];
int i,j;
linenum ll;
tmp = StaticAlloc();
src = source;
dst = dest;
while( (c = *src++) != '\0' ) {
if(c == '&') {
no = 0;
} else if (c == '\\' && '0' <= *src && *src <= '9') {
no = *src++ - '0';
} else {
no = -1;
}
/*
* do we have a normal character?
*/
if( no < 0 ) {
/*
* is this an escaped character?
*/
if( c == '\\' && EditFlags.RegSubMagic ) {
switch( *src ) {
case '|':
src++;
if( !isdigit( *src ) ) {
break;
}
i = 0;
while( isdigit( *src ) ) {
buff[i++] = *src++;
}
buff[i] = 0;
j = atoi( buff )-1;
*dst = 0;
i = RealLineLen( dest );
while( i < j ) {
*dst++ = ' ';
i++;
}
break;
case '#':
src++;
CFindLastLine( &ll );
ltoa( ll, buff, 10 );
i = strlen( buff );
ltoa( lineno, buff, 10 );
Lead( '0', i, buff );
for( j=0;j<i;j++ ) {
*dst++ = buff[j];
}
break;
case 't':
src++;
if( EditFlags.RealTabs ) {
*dst++ = '\t';
} else {
*dst++ = 't';
}
break;
case 'n':
src++;
if( EditFlags.AllowRegSubNewline ) {
*dst++ = SPLIT_CHAR;
splitit = TRUE;
} else {
*dst++ = 'n';
}
break;
case '\\':
case '&':
c = *src++;
*dst++ = c;
break;
case 'u':
src++;
upper_flag = TRUE;
perm_flag = FALSE;
break;
case 'l':
src++;
lower_flag = TRUE;
perm_flag = FALSE;
break;
case 'L':
src++;
lower_flag = TRUE;
perm_flag = TRUE;
break;
case 'U':
src++;
upper_flag = TRUE;
perm_flag = TRUE;
break;
case 'e':
case 'E':
src++;
upper_flag = lower_flag = perm_flag = FALSE;
break;
default:
*dst++ = '\\';
break;
}
/*
* not escaped, so just copy it in
*/
} else {
if( upper_flag ) {
c = toupper(c);
if( !perm_flag ) {
upper_flag = FALSE;
}
} else if( lower_flag ) {
c = tolower(c);
if( !perm_flag ) {
lower_flag = FALSE;
}
}
*dst++ = c;
}
/*
* copy in a sub expression
*/
} else if (prog->startp[no] != NULL && prog->endp[no] != NULL) {
len = prog->endp[no] - prog->startp[no];
if( upper_flag ) {
strcpy( tmp, prog->startp[no] );
strncpy( dst, strupr( tmp ), len);
if( !perm_flag ) {
upper_flag = FALSE;
}
} else if( lower_flag ) {
strcpy( tmp, prog->startp[no] );
strncpy( dst, strlwr( tmp ), len);
if( !perm_flag ) {
lower_flag = FALSE;
}
} else {
strncpy(dst, prog->startp[no], len);
}
dst += len;
}
}
*dst++ = 0;
StaticFree( tmp );
return( splitit );
} /* RegSub */
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?