Extraction In Text

To extract specific values from a block of text, utilize regex ( Regular Expression) with rule A(.*)\B. Example: you want to take a verify code in a message like "The authentication code is 128293. Please....." so you have a formula is "is(.*). Please" and the value returned to you is 128293. Để trích xuất các giá trị cụ thể từ một khối văn bản, hãy sử dụng biểu thức chính quy (Regular Expression) với quy tắc A(.*)\B. Ví dụ: bạn muốn lấy mã xác minh trong thông báo như "Mã xác thực là 128293. Vui lòng...." vậy là bạn có công thức là "là(.*). Vui lòng" và giá trị trả về cho bạn là 128293.

For example, we have a piece of data like this: "We have the following websites https://www.facebook.com/ and other websites like https://www.youtube.com/ and https://www.etsy. com/". When you want to get the URL contained in this piece of data, at the Extraction in text node, enter the following:

Ví dụ ta có một đoạn dữ liệu như sau: "We have the following websites https://www.facebook.com/ and other websites like https://www.youtube.com/ and https://www.etsy.com/". Khi muốn lấy URL có trong đoạn dữ liệu này, tại node Extraction in text ta nhập như sau:

In the Index result field, enter the number 1, we will get https://www.facebook.com/ and store it in the result variable.

Tại trường Index result nhập số 1 ta sẽ lấy được https://www.facebook.com/ và lưu vào biến result.

Last updated