I want to remove simple // comments in a string. My String is called input
def input = '''test //kommentar
|
|//noch einer
|
|und noch //einer'''.stripMargin()
The regex is \s*\/\/.*$
and can be tested here http://regexr.com?37ks0
In my code i have input = input.replaceAll(/\s*\/\/.*$/ , '')
But it doesn't work. Can anybody help me ?
And if you want to keep the
//noch einer
line as a blank line in your output, you could try:Of course if the line above was in your input text, then all of this regex munging would break the input code, as that line would become
input.replaceAll('(?m)
As a general rule, this sort of regular expression parsing of code is never a good idea