phil3
February 24, 2025, 5:09pm
1
I try to concat 2 strings : a https string : example https://www.google.com/ and a random value between 20 to 100
I tried this but it doesn’t work.
“https://www.google.com/ ” & (floor({{random}}* (100 - 20 + 1)) + 20)"
I tried to use the Module TOOLS (text aggregator)
How to concatenate 2 strings ? Thanks
Hi,
Try this
{{concat(“https://www.google.com/ ”, floor(random * 81) + 20)}}
phil3
February 25, 2025, 6:15pm
3
Hello thanks for your answer but the system returns an error :
Failed to map ‘value’: Function ‘concat’ not found!
I did an example working scenario for you. If you import the attached scenario blueprint you will have a working example.
text_aggregator_example.json (5.5 KB)
phil3
February 26, 2025, 1:37pm
5
Thanks. Works great using 3 modules. Maybe possible to use only one module but I don’t know how to do