代码搜索:模版匹配

找到约 3,092 项符合「模版匹配」的源代码

代码结果 3,092
www.eeworm.com/read/193041/8256837

cpp 实现字符串单模式匹配算法.cpp

#include #include using namespace std; //********************* int* getnext(char* p) { const int size = strlen(p); int* next = new int[size]; next[0] = -1; for(int m
www.eeworm.com/read/414839/11100447

sql 生成查询的模糊匹配字符串.sql

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[f_Sql]') and xtype in (N'FN', N'IF', N'TF')) drop function [dbo].[f_Sql] GO if exists (select * from dbo.sysobjects where id
www.eeworm.com/read/414392/11114911

sql 生成查询的模糊匹配字符串.sql

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[f_Sql]') and xtype in (N'FN', N'IF', N'TF')) drop function [dbo].[f_Sql] GO if exists (select * from dbo.sysobjects where id
www.eeworm.com/read/247504/12655751

sql proc_销售发票与出库单匹配.sql

IF EXISTS (SELECT NAME FROM SYSOBJECTS WHERE NAME='PROC_销售发票与出库单匹配' AND TYPE='P') DROP PROC PROC_销售发票与出库单匹配 GO create PROC PROC_销售发票与出库单匹配 as CREATE TABLE #AA ( 销售单号 INT, 发票金额 NUMERIC(18,6),