๐ข๐ฃ๐ผ๐๐ฒ๐ฟ ๐๐
๐ถ๐ป ๐ฃ๐ผ๐๐ฒ๐ฟ ๐๐๐๐ผ๐บ๐ฎ๐๐ฒ ๐๐ฒ๐๐ธ๐๐ผ๐ฝ now supports ๐ถ๐ป๐๐ฒ๐ฟ๐ฝ๐ผ๐น๐ฎ๐๐ฒ๐ฑ ๐๐๐ฟ๐ถ๐ป๐ด๐
๐ช๐ต๐ฎ๐ ๐ถ๐ ๐ฆ๐๐ฟ๐ถ๐ป๐ด ๐๐ป๐๐ฒ๐ฟ๐ฝ๐ผ๐น๐ฎ๐๐ถ๐ผ๐ป?
It is a powerful feature which allows you to inject variables, expressions directly into a standard string. It makes creating and formatting strings easier and more readable.
Used in programming languages. Also available in Power Apps and now in Power Automate Desktop.
๐๐
๐ฎ๐บ๐ฝ๐น๐ฒ:
๐ท Power Fx in PAD โ ๐ช๐ถ๐๐ต๐ผ๐๐ String Interpolation
="Welcome, " & vFirstName & " " & vLastName & ", " & "this is a nice update in PAD Version 2.41"
๐ท Power Fx in PAD โ ๐ช๐ถ๐๐ต String Interpolation
=$"Welcome, {vFirstName} {vLastName}, this is a nice update in PAD Version 2.41"
โKey points to note and benefits:
๐นString interpolation strings begin with a $
๐นUse curly braces {} to evaluate and embed the variable or expression
๐นBoth, normal text or interpolated strings can be used anywhere within that line of text
๐นNo need of any โ&โ operator, thus easy to read as well as write formatted strings.
๐นThis is applicable only for Power Fx enabled desktop flows (in preview). The "=" sign in the beginning is the Power Fx notation.
Below screenshot shows an output in ๐ฃ๐๐ using Power Fx โ ๐ช๐ถ๐๐ต String Interpolation
Check out my post for a sample on how Power Fx in PAD can be used.
https://lnkd.in/dd4cMTcH
This feature is released in the February update Version 2.41
*This post is locked for comments