0

Notepad++ を使用して、チェックリストに従って独自に定義されたコーディング標準に従います
。例:
1) String を宣言する場合、次のように s で始まる必要があり
ます。 String sTest = null;
String Test = null の場合。s で始まっていないことを強調したいと思います。
int の場合は
int iCount = 0;にする必要があります。
2) StringTokenizer が FrameworkUtil.split の代わりに使用されている場合は、Notepad++ で強調表示する必要があります Notepad++
で上記の条件を強調表示する方法を教えてください

4

1 に答える 1

0

上記の規則に準拠していない宣言を強調表示できない場合があります。ただし、これらの宣言はすべて、Notepad++に組み込まれている正規表現検索機能を使用して見つけることができます。ここでは、String型とint型の2つの例を示します。

For type 'String':

(1) Go to the source file
(2) Ctrl+Home to get to the first line of file
(3) Ctrl+F, a search box will appear
(4) In that search box, at left-bottom corner, 
    there is a radiobox named 'Regular expression', select it
(5) Also in that search box, enter the text to search for as: 
    String[\s]+[^s].+

For type 'int':

(1) Go to the source file
(2) Ctrl+Home to get to the first line of file
(3) Ctrl+F, a search box will appear
(4) In that search box, at left-bottom corner, 
    there is a radiobox named 'Regular expression', select it
(5) Also in that search box, enter the text to search for as: 
    int[\s]+[^i].+

他のタイプでもこの方法で行うことができます。たとえば、タイプが「abc」で、変数名の最初の文字が「x」の場合は、次の検索テキストを使用します。

abc[\s]+[^x].+

または、Notepad ++用に独自の強調表示構文を作成する場合は、http://weblogs.asp.net/jgalloway/archive/2006/11/25/creating-a-user-defined-language-in-notepadを試してください。 aspx

于 2012-08-26T09:45:13.993 に答える