การฝึกอบรม
โมดูล
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.
เบราว์เซอร์นี้ไม่ได้รับการสนับสนุนอีกต่อไป
อัปเกรดเป็น Microsoft Edge เพื่อใช้ประโยชน์จากคุณลักษณะล่าสุด เช่น การอัปเดตความปลอดภัยและการสนับสนุนด้านเทคนิค
Text.Start(text as nullable text, count as number) as nullable text
แสดงอักขระตัวcount
แรกของ text
เป็นค่าข้อความ
รับ 5 อักขระแรกของ "Hello, World"
การใช้งาน
Text.Start("Hello, World", 5)
เอาท์พุท
"Hello"
ใช้อักขระสี่ตัวแรกของชื่อและอักขระสามตัวแรกของนามสกุลเพื่อสร้างที่อยู่อีเมลของแต่ละบุคคล
การใช้งาน
let
Source = #table(type table [First Name = text, Last Name = text],
{
{"Douglas", "Elis"},
{"Ana", "Jorayew"},
{"Rada", "Mihaylova"}
}),
EmailAddress = Table.AddColumn(
Source,
"Email Address",
each Text.Combine({
Text.Start([First Name], 4),
Text.Start([Last Name], 3),
"@contoso.com"
})
)
in
EmailAddress
เอาท์พุท
#table(type table [First Name = text, Last Name = text, Email Address = text],
{
{"Douglas", "Elis", "DougEli@contoso.com"},
{"Ana", "Jorayew", "AnaJor@contoso.com"},
{"Rada", "Mihaylova", "RadaMih@contoso.com"}
})
การฝึกอบรม
โมดูล
Text manipulation in Power Automate for desktop - Training
Learn how to manipulate text and datetime values in Power Automate for desktop.