Link Search Menu Expand Document

RegexMatcher.GetInputString Method

Explanation Gets the input string set in the regular expression engine.
Added since Ver.5.0.1
Call format var s = rm.GetInputString( )
Return value Input string set in the regular expression engine
In Unicode mode, it returns as UString type, otherwise it returns as String type.
Arguments None
Exception None
Example of use
var p = RegexPattern.Compile("Biz/([a-zA-Z]+)", 0, RegexPattern.Unicode);
var m = p.Matcher("Biz/Browser,Biz/Designer");
print(m.GetInputString(), "\n");
    
Related item InputString property