So, this is the alias I'm using now:
I need to change it to match double quotations, ( " ) not singles. ( ' ) I've tried this:
But I can see why this doesn't work. Is there a way to do this?
<aliases>
<alias
match="rpose*"
enabled="y"
send_to="12"
omit_from_output="y"
ignore_case="y"
sequence="100"
>
<send>presort = string.gsub ("%1", "%a+", replacements)
message = string.gsub (presort, "'([%a%d%s.,:;!?@]*)'", "''@c%%1@y''")
Send("rpose @y" ..message.."@n")
</send>
</alias>
</aliases>
I need to change it to match double quotations, ( " ) not singles. ( ' ) I've tried this:
message = string.gsub (presort, "%"([%a%d%s.,:;!?@]*)%"", "''@c%%1@y''")
Send("rpose @y" ..message.."@n")
</send>
</alias>
</aliases>
But I can see why this doesn't work. Is there a way to do this?