Hello there
I have an attribute with values concatenated, I am looking to add character for each value
Before Attributephoto1,photo2,photo3
looking to get this after :
attributehttp://photo1/text,http://photo2/text,http://photo3/text
Hello there
I have an attribute with values concatenated, I am looking to add character for each value
Before Attributephoto1,photo2,photo3
looking to get this after :
attributehttp://photo1/text,http://photo2/text,http://photo3/text
Best answer by ebygomm
You can do this with a regular expression in a string replacer
The regular expression (photo\\d+) matches any occurrence of the word photo followed by one or more numbers
The replacement text then replaces the matched value with http:// followed by the matched group \\1 followed by /text
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.