hi
i want if original filename has one of many strings such as ("Duble" or "Dubbed" or  "Dooble" or  "doobleh" or  "DOOBLEH") then use "Dubb" insted of them
what should i do?
			
			
									
						
										
						how to use multiple if by "and/or"
Re: how to use multiple if by "and/or"
Here you go:
			
			
									
						
										
						Code: Select all
fn =~ /Duble|Dubbed|Dooble|doobleh|DOOBLEH/ ? /Dubb/ : null