Text.BeforeDelimiter
Text.BeforeDelimiter
Syntax
Text.BeforeDelimiter(
text as text,
delimiter as text,
optional index as any
) as any
Remarks
Trả về phần của text
trước delimiter
được chỉ định. index
dạng số tùy chọn cho biết lần xuất hiện nào của delimiter
sẽ được xem xét. Danh sách tùy chọn index
cho biết lần xuất hiện nào của delimiter
sẽ được xem xét, cũng như việc đánh chỉ mục có được thực hiện tính từ phần đầu hoặc cuối của đầu vào hay không.
Examples
Example #1
Lấy phần của "111-222-333" trước gạch nối (đầu tiên).
Text.BeforeDelimiter("111-222-333", "-")
Result:
"111"
Example #2
Lấy phần của "111-222-333" trước gạch nối thứ hai.
Text.BeforeDelimiter("111-222-333", "-", 1)
Result:
"111-222"
Example #3
Lấy phần của "111-222-333" trước gạch nối thứ hai tính từ cuối.
Text.BeforeDelimiter("111-222-333", "-", {1, RelativePosition.FromEnd})
Result:
"111"
Category
Text.Transformations