从数据工厂表达式中的多个模式长度中提取 table 名称

Extract table name from more than one schema length in Data Factory Expression

我需要从 schema.table_name 中提取 table 名称,我有多个长度未知的架构。例如Finance.Reporting 或 Setup.System。我想使用数据工厂中的表达式从这些字符串中提取报告和系统。

您可以使用 split() 函数根据 returns 数组的分隔符拆分字符串,并从字符串中获取第二个值。

注意:数组索引从0开始

@split('Finance.Reporting','.')[1]