3

単一行の Java コメントの正規表現は何ですか: 次の文法を試しています :

     def single_comment(t):
          r'\/\/.~(\n)'
          #r'//.*$'
          pass

しかし、一行のコメントを無視できません。どうすればいいですか?

4

2 に答える 2

4

単一行コメントに一致する Python 正規表現 (/* */ ではなく、// で始まるコメントのみに一致します)。残念ながら、この正規表現は文字列内のエスケープ文字や // を考慮しなければならないため、非常に醜いものです。実際のコードでこれが必要になった場合は、より簡単に理解できる解決策を見つける必要があります。

import re
pattern = re.compile(r'^(?:[^"/\\]|\"(?:[^\"\\]|\\.)*\"|/(?:[^/"\\]|\\.)|/\"(?:[^\"\\]|\\.)*\"|\\.)*//(.*)$')

これは、パターンに対して一連のテスト文字列を実行する小さなスクリプトです。

import re

pattern = re.compile(r'^(?:[^"/\\]|\"(?:[^\"\\]|\\.)*\"|/(?:[^/"\\]|\\.)|/\"(?:[^\"\\]|\\.)*\"|\\.)*//(.*)$')

tests = [
    (r'// hello world', True),
    (r'     // hello world', True),
    (r'hello world', False),
    (r'System.out.println("Hello, World!\n"); // prints hello world', True),
    (r'String url = "http://www.example.com"', False),
    (r'// hello world', True),
    (r'//\\', True),
    (r'// "some comment"', True),
    (r'new URI("http://www.google.com")', False),
    (r'System.out.println("Escaped quote\""); // Comment', True)
]

tests_passed = 0

for test in tests:
    match = pattern.match(test[0])
    has_comment = match != None
    if has_comment == test[1]:
        tests_passed += 1

print "Passed {0}/{1} tests".format(tests_passed, len(tests))
于 2013-03-15T02:50:31.030 に答える
3

これはうまくいくと思います(pyparsingを使用):

data = """
class HelloWorld {

    // method main(): ALWAYS the APPLICATION entry point
    public static void main (String[] args) {
        System.out.println("Hello World!"); // Nested //Print 'Hello World!'
        System.out.println("http://www.example.com"); // Another nested // Print a URL
        System.out.println("\"http://www.example.com"); // A nested escaped quote // Print another URL
    }
}"""


from pyparsing import *
from pprint import pprint
dbls = QuotedString('"', '\\', '"')
sgls = QuotedString("'", '\\', "'")
strings = dbls | sgls
pprint(dblSlashComment.ignore(strings).searchString(data).asList())

[['// method main(): ALWAYS the APPLICATION entry point'],
 ["// Nested //Print 'Hello World!'"],
 ['// Another nested // Print a URL'],
 ['// A nested escaped quote // Print another URL']]

スタイル コメントが/* ... */あり、たまたま 1 行のコメントが含まれていて、実際にはそうしたくない場合は、次を使用できます。

pprint(dblSlashComment.ignore(strings | cStyleComment).searchString(data).asList())

( https://chat.stackoverflow.com/rooms/26267/discussion-between-nhahtdh-and-martegaで説明されているように)

于 2013-03-15T21:10:24.330 に答える