- Mar 22, 2013
- 9,146
- 10,489
I have an AutoIT script which copies over text from one file to another. And I have a filter to remove certain characters before copying.
Local $Removal[5]
$Removal[0] = "-"
$Removal[1] = "_"
$Removal[2] = "."
$Removal[3] = ","
$Removal[4] = "l"
As you can see, the first four are just characters. But the last one is a small L
The problem is, it's filtering both the small (l) and the big (L)
But I only want it to filter out the small (l)
Anything I can do to make it case sensitive? Maybe wrap it in some more quotes or something?
Thanks
Local $Removal[5]
$Removal[0] = "-"
$Removal[1] = "_"
$Removal[2] = "."
$Removal[3] = ","
$Removal[4] = "l"
As you can see, the first four are just characters. But the last one is a small L
The problem is, it's filtering both the small (l) and the big (L)
But I only want it to filter out the small (l)
Anything I can do to make it case sensitive? Maybe wrap it in some more quotes or something?
Thanks