07-21-2008, 3:17 PM
|
wasuplee123
Joined on 06-04-2008
Posts 8
|
System.Text.Regex Parameters
|
 
 
|
|
|
The API shows the following:
regexVar = System.Text.Regex(pattern, options)
I figured out that pattern is a string variable, but what type is options, and what values can it take?
--
Also it would help if the API had type prefixes for function arguments as well...
For Example, these 2 functions:
matchVar = regexVar.Match(theInput)
strVar = strVar.Left(Count)
should be written as:
matchVar = regexVar.Match(strTheInput)
strVar = strVar.Left(intCount)
This would help clarify what argument types the functions take.
|
|
|
|
|
Report
|
|
|
|