this works fine....after finding this 32 digits i want put it in a variable or in a other textfile....but to bad i just have options to replace the text i have found....
is there any other option to find a special text and put it in a varibale or textfile ?
It’s a limitation in the current version of text find/replace. My normal workaround: 1. Read the text file into a variable 2. Find/replace with a string like: ([0-9]{32}) <- note the parentheses 3. Choose “replace” and “save to same variable” (or whatever it’s called) 4. Set $1 as the replacement string.
Obviously you have to select regex, and enable the $1 type replacement strings.
Then basically you’ll be replacing the entire contents of the file (in memory) with just the contents of that 1 string.