I would like to check whether a given text begins with some currency symbols, like $€£¥. how to achieve that using regex
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Depending on your language, but something like
^[\$€£¥].*[]is a character group matching one of the characters inside.You might have to write
\$because the$-sign has sometimes special meaning in regexps..*matches “everything else” (except a newline).Edit: After re-reading your question: If you really want to match some currency symbols (maybe more than one), try
^[\$€£¥]+.*