Is there a code to retain a character in RegEx after using find and replace such as [a-z].
I need to combine paragraphs starting with small case letters and when I use [a-z], it removes the first letter and replaces it with [a-z]
example:
shall
determine
after using regex, it replaces the text with “shall [a-z]etermine”.
I need the result to be “shall determine”
I need to combine paragraphs starting with small case letters and when I use [a-z], it removes the first letter and replaces it with [a-z]
example:
shall
determine
after using regex, it replaces the text with “shall [a-z]etermine”.
I need the result to be “shall determine”
user25306732 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.