I need to parse a sentence. If I find a hash in the sentence, I would like to bold it.
Example : Bonjour #hello Hi => Bonjour #hello Hi
|
I need to parse a sentence. If I find a hash in the sentence, I would like to bold it. Example : Bonjour |
|||||
|
|
Seems like a good situation for regex I'd do something like this
In this case we're matching a literal hash Updated jQuery doing the same thing. Something like: HTML
jQuery
|
|||||||||||
|
|
There's probably a more elegant way to do this but you can use the String.IndexOf method to find the first instance of the hash like so
All that's left for you is to implement the MakeBold function. |
|||
|