Multiple choice technology platforms and products

string_join(re_split("I Love India","@"),"Like")

  1. I Love India

  2. I Likeove India

  3. I Like India

  4. ILoveIndia

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

The function re_split("I Love India", "@") attempts to split the string using "@" as delimiter, but since "@" is not present in the string, it returns the entire string as a single element. Then string_join joins this single element with "Like", which results in the original string unchanged. Option A is correct.