regex - Using regular expression to findi any character or no character? -
i'm trying create regular expression find lines contain specific character example "a". using
^(.+)a
will render lines don't start character "a", contain them. there way express characters or no characters?
i think regex a
should work in line-by-line matchers.
see linepogl's answer character-matching whole line.
Comments
Post a Comment