Firstable i want to match if a string has the following format: $abc #xyz or $abc .xyz.
The abc and xyz mean only alphanumeric string.
If it’s matched then i need to extract the first $abc and the last #xyz, all that using pure javascript and maybe regex.
The pattern is in the following order:
- Dollar Sign
- Unlimited alphanumeric string
- space
- a hash or point
- Unlimited alphanumeric string
Thanks in advance for any help.
Try the following regular expression:
Explanation:
Example usage: