简体   繁体   中英

How do I put an escape character (NOT “escaped” character) in a Ruby regex?

I'm trying to parse a text file that has ANSI color sequences in it, eg

\e[0;37m

How can I build a regex to match this in Ruby?

It turns out this works absolutely fine:

def strip_ansi_sequence (str)
  str.gsub(/\e\[[^m]*m/, '')
end

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM