DAX 文本 - MID 函数



说明

根据给定的起始位置和长度,返回文本字符串中间的一串字符。

语法

MID (<text>, <start_num>, <num_chars>) 

参数

序号 参数和说明
1

text

从中提取字符的文本字符串,或包含文本的一列。

2

start_num

表示要提取的第一个字符位置的一个整数。数字从文本开头处从 1 开始。

3

num_chars

要返回的字符数。

返回值

文本字符串。

备注

DAX 使用 Unicode,并且以相同长度存储所有字符。

示例

= MID ([Product], 1, 5), and 
= LEFT ([Product], 5) return the same characters. 

但是,可以使用 DAX MID 函数从输入字符串的中间提取文本。

= MID ([Product],5,5) returns 5 characters starting from the 5th character. 
dax_functions_text.htm
广告