Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: ltollesonYou can use a filter node with the following scripting code.
textString = "Some.sting.of.characters"
newString = textString.replace(".", " ")
emit textString, newString
In the example above I replaced the "." with a space " ". You can replace any string of characters with another string of characters using the replace function.
Of course this is just using a hard coded literal string value. You can also use an input string field as well. It would look like this.
textString = 'someFieldName'
newString = textString.replace(".", " ")
emit textString, newString
You can also use the regular expression functions if you need more complex string manipulation. They all start with "regex".