REGEX HELP with White Spaces
HelloI can do what i want for regex in an editor but I'm having trouble switching it over to use for JMP.The following does what i need it do to in the editor([E]|[e])[2]|(231) i can't seem to get to work exactly like i need it to in JMP i got as far as the belowRegex( :TEXT, "(E2|e2|231\d?)", "\1" )
it will pick up E2 or e2 no problem but for 231 i need it to only extract when there is whitespace...