I am somewhat of a Rails newbie so bear with me, I have most of the application figured out except for this one part.
|
feedback
|
I found this example here: http://github.com/jnunemaker/twitter-app The link to the helper method: http://github.com/jnunemaker/twitter-app/blob/master/app/helpers/statuses_helper.rb | ||||
|
feedback
|
|
Perhaps you could use Regular Expressions to look for "@..." and then replace the matches with the corresponding link? | |||
|
feedback
|
|
You could use a regular expression to search for @sometext{whitespace_or_endofstring} | |||
|
feedback
|
|
You can use regular expressions, i don't know ruby but the code should be almost exactly as my example:
This example would return
If you run it on .NET The regex | |||
|
feedback
|
|
Perhaps you can use a regular expression to parse out the words starting with This regular expression will give you words starting with
| |||
|
feedback
|
|
You would use a regular expression to search for @username and then turn that to the corresponding link. I use the following for the @ in PHP:
| ||||
|
feedback
|
|
I've also been working on this, I'm not sure that it's 100% perfect, but it seems to work:
I pieced it together with some google searching and some reading up on String.scan in the api docs. | |||
|
feedback
|