 |
masterkrueger Wanderer
Joined: 24 Jan 2010 Posts: 65 Location: Hamburg
|
Posted: Sun Jun 20, 2010 4:29 pm
Pattern matching again ;) |
Is it possible to match or find the position of any of the punctuation marks?
I need the first occurrence of there three here: .!?
Code: |
#PRINT %match(@RName, @PunctuationMarks)
#PRINT %pos(@PunctuationMarks, @RName) |
PunctuationMarks is a Stringlist with .!?
and RName is a sentence from the mud with . in it
but it shows 0 (not found) everytime.
I know i could make an workaround to test for each sign but thats not stylish ;) |
|
|
 |
chamenas Wizard

Joined: 26 Mar 2008 Posts: 1547
|
Posted: Sun Jun 20, 2010 6:26 pm |
Edit: Turns out I went for a more complex answer than was needed.
|
|
|
 |
DraxDrax Apprentice
Joined: 22 Mar 2009 Posts: 149
|
Posted: Sun Jun 20, 2010 7:48 pm |
Try:
#PRINT %match(@RName, "[.!?]") |
|
|
 |
masterkrueger Wanderer
Joined: 24 Jan 2010 Posts: 65 Location: Hamburg
|
Posted: Mon Jun 21, 2010 6:18 pm |
Thanks that works, i tried [.!?] without the "
|
|
|
 |
|
|