Code:
Sub ScratchMacro()
'A basic Word macro coded by Greg Maxey
Dim oPar As Paragraph
Dim oRng As Range
For Each oPar In ActiveDocument.Paragraphs
If IsNumeric(oPar.Range.Characters(1)) Then
Set oRng = oPar.Range
oRng.Collapse wdCollapseStart
oRng.MoveEndUntil "S", wdForward
oRng.Delete
End If
Next
Set oRng = ActiveDocument.Range
oRng.Text = Replace(oRng.Text, vbCr, "")
lbl_Exit:
Exit Sub
End Sub