In Inno Setup tool (Windows OS)
InstallDir: string;
I have a string InstallDir
which contains C:\-=[]\.,';
I want to set a regular expression pattern as below
^([a-zA-Z]:)\\([0-9a-zA-Z_\\\s\.\-\(\)]*)$
Ex: It should be c:\< A to Z / a to z > or number or _ and so on (means a valid path).
I could not find any function in Inno Setup, which tells it supports regular expression for string operations.
Can any body help me out to resolve this?