简体   繁体   中英

Why won't this ruby regex match this string?

x = "output/file.zip"

x =~ /output\/.\../

returns nil. There is something wrong with escaping the period, but I can't figure it out.

. usually means "any character" in regex. Try .* , which means " . repeated zero or more times":

x =~ /output\/.*\..*/

Works fine for me.

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