I cant seem to figure out how to put this all into regex. I know there has got to be an easy way but i am stumped. I dont think you can do chaining with vba excel? Any guidance would be awesome. Thanks!!
Set Myrange = ActiveSheet.Range(Range("A2"), Range("A2").End(xlDown))
For Each Cell In Myrange
strInput = LCase(Cell.value)
strInput = Replace(strInput, " ", "-")
strInput = Replace(strInput, ".", "-")
strInput = Replace(strInput, ",", "-")
strInput = Replace(strInput, "'", "")
strInput = Replace(strInput, ")", "")
strInput = Replace(strInput, "(", "")
strInput = Replace(strInput, "---", "-")
strInput = Replace(strInput, "--", "-")
strInput = Replace(strInput, "®", "")
strInput = Replace(strInput, "™", "")
strInput = Replace(strInput, "%", "-percent")
strInput = Replace(strInput, """", "-inch")
Cells(Cell.Row, "F") = strInput
Next