Text.AfterDelimiter
Text.AfterDelimiter
Syntax
Text.AfterDelimiter(
text as text,
delimiter as text,
optional index as any
) as any
Remarks
Trả về phần của text
sau 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" sau gạch nối (đầu tiên).
Text.AfterDelimiter("111-222-333", "-")
Result:
"222-333"
Example #2
Lấy phần của "111-222-333" sau gạch nối thứ hai.
Text.AfterDelimiter("111-222-333", "-", 1)
Result:
"333"
Example #3
Lấy phần của "111-222-333" sau gạch nối thứ hai tính từ cuối.
Text.AfterDelimiter("111-222-333", "-", {1, RelativePosition.FromEnd})
Result:
"222-333"
Category
Text.Transformations