Find more posts tagged with
Sort by:
1 - 3 of
31
\^ escapes your special symbol, so instead of starting at the beginning of your attribute (what would happen with ^) your expression is now looking for the character ^ instead.
You will also only find matches that are word + word, so if your attribute is existing of a single word it will fail also.
What would probably work better is something like this :
^(.*)$ which means just select my whole attribute value from beginning to end, and replace with "$1" , so quot + stored result + quote
You will also only find matches that are word + word, so if your attribute is existing of a single word it will fail also.
What would probably work better is something like this :
^(.*)$ which means just select my whole attribute value from beginning to end, and replace with "$1" , so quot + stored result + quote
Sort by:
1 - 1 of
11
\^ escapes your special symbol, so instead of starting at the beginning of your attribute (what would happen with ^) your expression is now looking for the character ^ instead.
You will also only find matches that are word + word, so if your attribute is existing of a single word it will fail also.
What would probably work better is something like this :
^(.*)$ which means just select my whole attribute value from beginning to end, and replace with "$1" , so quot + stored result + quote
You will also only find matches that are word + word, so if your attribute is existing of a single word it will fail also.
What would probably work better is something like this :
^(.*)$ which means just select my whole attribute value from beginning to end, and replace with "$1" , so quot + stored result + quote
Hello
I think you can use Replace operator
https://docs.rapidminer.com/latest/studio/operators/blending/values/replace.html
https://community.rapidminer.com/discussion/comment/63890#Comment_63890
I hope this helps
mbs