Skip to main content
Nintex Community Menu Bar
Solved

Next Line or carriage return inside the expression

  • January 10, 2019
  • 3 replies
  • 364 views

Forum|alt.badge.img+8

Hi,

Please guide on how to include next line or carriage return inside the expression as an example below.

 


= next line

 

Hi,

New request has been saved.

Request #

 

I will use the expression in my SMS

using K2 Five

 

Thanks

Best answer by K2CaveMen

You can Achieve this creating a Expression for example:

 

Exp_Carriage_Return  == Url Decode (%0A)

 

Then when u like to add a carriabe return in a text area, basically use another Expresion to Concatenate your new line and this new expersion.

 

Exp_Body  == Concatenate(LINE1, Exp_Carriage_Return,LINE2) 

* Where LINE1 and LINE2 are text controls for previous lines and will be join with the carriage return in the Text Area.

 

Have FUN!!!.

3 replies

Forum|alt.badge.img+10
  • Answer
  • January 10, 2019

You can Achieve this creating a Expression for example:

 

Exp_Carriage_Return  == Url Decode (%0A)

 

Then when u like to add a carriabe return in a text area, basically use another Expresion to Concatenate your new line and this new expersion.

 

Exp_Body  == Concatenate(LINE1, Exp_Carriage_Return,LINE2) 

* Where LINE1 and LINE2 are text controls for previous lines and will be join with the carriage return in the Text Area.

 

Have FUN!!!.


Forum|alt.badge.img+8
  • Author
  • Novice
  • January 13, 2019

Thanks it is working.


BazM
  • Novice
  • February 24, 2022
nice one, saved me a headache!