Shift + Enter is nothing but ^l
This is how Shift + Enter looks like
So you can either replace it manually or use the below VBA Code.
Non VBA Way
- Press Ctrl+H to open the Replace dialog.
- In the "Find what" box, type
^l
.
- In the "Replace with" box, type
" "
(Space without the quotes).
- Click Replace All.
VBA Way
Paste this in a module
Sub Sample()
Selection.Find.ClearFormatting
Selection.Find.Replacement.ClearFormatting
With Selection.Find
.Text = "^l"
.Replacement.Text = " "
.Forward = True
.Wrap = wdFindContinue
.Format = False
.MatchCase = False
.MatchWholeWord = False
.MatchKashida = False
.MatchDiacritics = False
.MatchAlefHamza = False
.MatchControl = False
.MatchWildcards = False
.MatchSoundsLike = False
.MatchAllWordForms = False
End With
Selection.Find.Execute Replace:=wdReplaceAll
End Sub