Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

334
Views
Ruby regex anchors combined with character class &&

I am trying to match a string containing printable ascii without some special characters, for example the character 'x'. I use this regex /[.&&[^x]]/ for this task.

When trying to match if the whole string is made from this character specification the regex doesn't match any more. /^[.&&[^x]]*$/

Trying this with the normal dot works however. /^.*$/ matches every string i throw at it.

I'm using Ruby 2.7.2

The regex is constructed at runtime and the /^ ... $/ anchors are needed for other edge cases.

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Printable ASCII regex is [ -~].

To match any printable ASCII char other than x, just use character class subtraction on this class: [ -~&&[^x]].

To match a string that only contains such chars use

/\A[ -~&&[^x]]*\z/

See the Rubular demo.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!