Hello
I WOULD LIKE TO CREATE AN EXPRESSION RULE THAT SUBSTITUTES ME By empty the following characters:
\ /; : â € œ | ? â € ™> <*]thanks
Discussion posts and replies are publicly visible
For example: “w]orld/;:.txt” return us “world.txt”
Yes, fn!stripwith() will do this:
fn!stripwith( "w]orld/;:.txt", "\ /; : â € œ | ? â € ™> <*]")
Hi,
I have a string like... "Burchell, Stewart (SB12345)" , but I just want "SB12345" text. how can I achieve this?
TIA
mid("Burchell, Stewart (SB12345)", 20, 7)
We will need more details in case you need a more flexible logic.