Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #72.8K
~360 People Reached
Favorite Forums
Favorite Tags
java x 1

2 Posted Topics

Member Avatar for Ghost

Its not that hard. I have a series of tutorials on how to make your own programming language on youtube. Just go the the youtube site and search "how to make your own pgoraming language". The series will take you from defining the syntex of your new language, through the …

Member Avatar for zack999
0
159
Member Avatar for Barbarrosa

heres another way: librarys you'll need: using System.Text.RegularExpresions; code block: Regex r = new Regex("As:(.*);"); string s = (richTextBox1.Text); /*note richTextBox or TextBox*/ MatchCollection mc = r.Matches(s); MessageBox.Show(mc[0].Groups[1].Value);

Member Avatar for zack999
0
201

The End.