1

VBA を使用して \r \n などの HTML 改行を Excel セルの改行に変換する方法を知りたいと思っていました。たとえば、HTML ページからコピーした次のテキスト文字列があります。

hello my name is pete \r\n\r\n here are a list of things I would like to do today: \r\n\r\n *wake up \r\n\r\n *eat breakfast

次のようにExcelに表示したい:

hello my name is pete

here are a list of things I would like to do today:

- wake up
- eat breakfast
4

1 に答える 1

2

あなたが探しているのは、文字列の直接的なテキスト置換だと思います。以下は、現在アクティブなセルに対してそれを行います。

ActiveCell.Replace What:="\r\n", Replacement:=vbLf, LookAt:=xlPart, MatchCase:=False
于 2012-12-15T00:14:29.313 に答える