<p>
ユーザーがhtmlページのテキストエリアに入力したものを、それぞれ<p>
が新しい行を置き換えるタグ付きの出力に変換したいと思います。
正規表現を試していますが、機能しません。誰かが私の表現を修正しますか?
String = "Hey, this is paragraph 1 \n and this is paragraph 2 \n and this will be paragraph 3"
Regex = r'(.+?)$'
結果としてHey, this is paragraph 1 \n and this is paragraph 2 \n<p>and this will be paragraph 3</p>