Does anyone know how i can remove the HTTPS:// from a link? I tried the following function: {{replace(“https://beeinteractive.ai/”; “https://”; )}} but it did not remove the https://
1 Like
Hey @Ruben_Koemans
https:// is always constant number of characters. Hence, you can use substring() function like this:
{{substring(value;8;length(value))}}
Regards,
Msquare Automation - Gold Partner of Make
@Msquare_Automation
1 Like
Fount the solution: needed to add " " after the last ;
3 Likes
@Ruben_Koemans Glad to you figured it out on your own.
Regards,
Msquare Automation - Gold Partner of Make
@Msquare_Automation
1 Like