My input:
2,india,"i join today,and
please
guide me,thank you",+91547854221
My requirement is find all CR or LF ( simply enter ) between "....." in single shot.
Required Output :
2,india,"i join today,and please guide me,thank you",+91547854221
I have regex for this . but it will find only one CR or LF at a time, but i want to find all CR LF in single shot but not in multiple shot.
My regex:
(\")(?!\,)([^"]?)(\n|\r)([^"]?\") ---->($3 is CR or LF ,i replacing with space)
replace with : $1$2 $4
What iam getting:
2,india,"i join today,and please
guide me,thank you",+91547854221