Copy link to clipboard
Copied
Is there any way to remove all the punctuations that the auto transcribe has? If yes, how? Thank you!
Copy link to clipboard
Copied
Not in PR.
I would export as text file, then edit in Notepad++ or similar and use Regex search/replace to remove all punctuation. I have not done it, and don't know what the specific replace code would be.
You could do the Notepad replace and just replace one punctuation at the time without knowing any special code.
Stan
Copy link to clipboard
Copied
Hi Stan,
you can also use Regular Expressions in the text search window by using the (undocumented/hidden) expression:
\\R{yourregexhere}
Use at your own risk! There might be more official support for this in the future.
--
Best regards,
Alexander
Copy link to clipboard
Copied
Alexander,
Thanks for sharing!
Stan