SSIS 中的正则表达式

Regular expression in SSIS

我在一列中有此数据:

<b>Dummy Alerts: </b>3/3Alerts have been addressed&#10; Question Alert: Have you had problems or are your volumes lower than normal?  " +
                "Yes Alert is closed on 01/09/2018 at 01:08 PM&#10; Question Alert: Have you been drinking more fluid? " +
                " Yes Alert is closed on 10/09/2019 at 01:08 PM&#10;&#10;Ram support visit performed 10/9/17,  Weight 90.2kg (dry). " +
                "TW achieved. No peripheral edema. BP within routine range per patient history. Urine output 1050ml. No PO fluid restriction at this time. " +
                "Patient did forget to bring in flow sheets.  Monitor UF trend with flow sheet review in one week. Michelle Mayhew Smith, RN."

和其他类似类型的记录。

我只想 select 这些文本并插入到新列中:-

 Ram support visit performed 10/9/17,  Weight 90.2kg (dry).
            TW achieved. No peripheral edema. BP within routine range per patient history. Urine output 1050ml. No PO fluid restriction at this time.
            Patient did forget to bring in flow sheets.Monitor UF trend with flow sheet review in one week. Michelle Mayhew Smith, RN.

我想在 SSIS 中使用正则表达式

SSIS 不支持开箱即用的正则表达式。
您绝对可以使用 RegexClean and Regular Expression transformations from Darren Green. Or - you can do whatever needed in your custom Script transformation, like described in this sample 并采用 C# 和 .Net。