How do I replace an entire line of text that has a certain c
How do I replace an entire line of text that has a certain c
How do I replace an entire line of text that has a certain character on it?
Re: How do I replace an entire line of text that has a certa
You simply look for that specific character and accept anything that surrounds it.
Find:
^.*#.*$
Replace by:
{enter your desired text here}
. = dot, means "any character"
* = asterisk, means: accept any consecutive string of the preceding character(s), requiring none at all
# : enter your specific character here instead
Find:
^.*#.*$
Replace by:
{enter your desired text here}
. = dot, means "any character"
* = asterisk, means: accept any consecutive string of the preceding character(s), requiring none at all
# : enter your specific character here instead