I have tried this...
Dim myMatches As String() =
System.Text.RegularExpressions.Regex.Split(postRow.Item("Post"), "\b\#\b")
But it is splitting all words, I want an array of words that start with#
Thanks!
|
|
|
|
|
|
|
This seems to work... c#
or vb.net
Given input text of... "asdfas asdf #asdf asd fas df asd fas #df asd f asdf" ...this will yield.... "#asdf" and "#df" I'll grant you that this does not get you a string Array but the MatchCollection is enumerable and so might be good enough. Additionally, I'll add that I got this through the use of Expresso. which appears to be free. It was very helpful in producing the c# which I am very poor at. (Ie it did the escaping for me.) (If anyone thinks I should remove this pseudo-advert then please comment, but I thought it might be helpful :) Good times ) |
|||
|
|
|
|
Since you want to include the words in the split you should use something like
This includes the actual word there in the expression. However I'm not sure that's what you want. Could you provide an example of input and the desired output? |
||
|
|
|
|
Using PHP's
Outputs:
Array
(
[0] => #string
[1] => #my
[2] => #text.
)
|
||
|
|
|
|
Here is a code in Javascript:
|
||
|
|
|
|
In Microsoft regex flavours, Try: "\#:w" That worked for me using Find in Visual Studio. I don't know how it will translate into the Regex class. EDIT: Backslash was swallowed. |
||
|
|