English 中文(简体)
reg问题
原标题:regex negation question

是否有任何人知道如何用一种固定的表述(例如使用某种灰色工具)来搜索“私营”一词,但排除“private”一词。 我已接管了一个有数百处提及增值税的项目(有些是硬编码的,有些是没有的),由于联合王国的增值税率在1月1日发生变化,我需要以正确的速度更新项目来源档案。 在我对视力演播室的“秘密”一词进行全球搜索之时,该词还含有私人真空定义的回归线。

除此以外,我还需要寻找15条(目前的私有化率),但我想排除在15条之前或之后具有任何数量的任何线。 例如,0.15或15或15%是真实的,015或150或15a是假的。

你们可以想象,这并不是手工作业的艰巨任务,因此,任何帮助都将受到高度赞赏。

感谢

时间

最佳回答

视力演播室(我读过你以前做过)可以使用:

私有化

~(pri)vat~(e) (如果需要,这还将排除这样仅仅从(e)~中取走。)

15岁

[^0-9a-z]15 [^0-9a-z]

经常使用Syntax VS,用于Find和替换,不像你的标准格言,不肯定为什么管理系统这样做,而是这样做。

问题回答
/VAT/

/(0.)?15%?/

后者允许像“生态”这样的东西,但是这些东西应当足够少,无法在以后进行过滤。 Regex是这方面的最佳工具,“10+5”等表述是什么? 但是,如果满足你的需要,它至少容易使用!

是的,你可以采用一种称为负面眼光和光头的技术,这种技术将与其他东西相匹配。

概述:

rel=“nofollow noreferer”> http://www.table-expressions.info/lookaround.html

此外,杰夫·阿特伍德还张贴了可能具有一定价值的博客:

rel=“nofollow noreferer”> http://www.codinghorror.com/blog/archives/000425.html

您能否寻找“私营”(spacevatspace)?





相关问题
Anyone feel like passing it forward?

I m the only developer in my company, and am getting along well as an autodidact, but I know I m missing out on the education one gets from working with and having code reviewed by more senior devs. ...

NSArray s, Primitive types and Boxing Oh My!

I m pretty new to the Objective-C world and I have a long history with .net/C# so naturally I m inclined to use my C# wits. Now here s the question: I feel really inclined to create some type of ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

How to Use Ghostscript DLL to convert PDF to PDF/A

How to user GhostScript DLL to convert PDF to PDF/A. I know I kind of have to call the exported function of gsdll32.dll whose name is gsapi_init_with_args, but how do i pass the right arguments? BTW, ...

Linqy no matchy

Maybe it s something I m doing wrong. I m just learning Linq because I m bored. And so far so good. I made a little program and it basically just outputs all matches (foreach) into a label control. ...

热门标签