Adding spaces between words in a Section Header

Certified Senior Developer
Is there a way where we can add blank spaces between a string to show in a section header. For example:
"Name: Chris Age: 38 Gender:M".
If we try using concat or & the blank spaces are ignored and the resulting string would look like
"Name: Chris Age: 38 Gender: M". In the string there are few pv! variables as well so we are anyway using concat function.

OriginalPostID-243075

  Discussion posts and replies are publicly visible

Parents
  • @raghunandanc ,

    Hi ,

    As per my understanding , you are trying to concat three pv's lets say name , age and gender and want some space between them

    in case you are trying to acheive that you can please use the following

    "Name:"&pv!name&char(9)&"Age"&pv!age&char(9) and so on...

    In the above char(9) is the way of representing a tab space in a string in appian , as 9 is the ascii value of horizontal tab

    Hope this helpful
    Thanks
Reply
  • @raghunandanc ,

    Hi ,

    As per my understanding , you are trying to concat three pv's lets say name , age and gender and want some space between them

    in case you are trying to acheive that you can please use the following

    "Name:"&pv!name&char(9)&"Age"&pv!age&char(9) and so on...

    In the above char(9) is the way of representing a tab space in a string in appian , as 9 is the ascii value of horizontal tab

    Hope this helpful
    Thanks
Children
No Data