Chatterbox window support
- parthenian@yahoo.com
-
Topic Author
- Offline
- New Member
Less
More
- Posts: 2
- Thank you received: 0
25 Apr 2018 17:59 #1
by parthenian@yahoo.com
Chatterbox window support was created by parthenian@yahoo.com
My mud seems to have nothing which matches the chatterbox regex and apparently I suck at understanding the gobbledygook
match: '([\r\n]+|^|<span.+?>)([^<].+) (tell)(s|) (.+), \'(.+)\'(<\/span>)([\r\n]+|$)',
replace: '$1$2@$5: $6$7',
Through multiple views for Javascript regex... guess I'm still a loser
What I would like? Thanks for asking
Capture this text from the the MUD
<across the back> a dirt-encrusted, basic, tan backpack made of brittle leather
and push this to a chat window called inventory
<across the back> a dirt-encrusted, basic, tan backpack made of brittle leather
match: '([\r\n]+|^|<span.+?>)([^<].+) (tell)(s|) (.+), \'(.+)\'(<\/span>)([\r\n]+|$)',
replace: '$1$2@$5: $6$7',
Through multiple views for Javascript regex... guess I'm still a loser

What I would like? Thanks for asking

Capture this text from the the MUD
<across the back> a dirt-encrusted, basic, tan backpack made of brittle leather
and push this to a chat window called inventory
<across the back> a dirt-encrusted, basic, tan backpack made of brittle leather
Please Log in or Create an account to join the conversation.