Difference between revisions of "ReplaceStringStage"

From CCIL
Jump to: navigation, search
(Created page with "Replaces all occurrencies of a given ''java.lang.String'' within another ''java.lang.String''. == Overview == <br/> {| |- | '''jar''' | ccil-api |- | '''recommended name...")
 
(No difference)

Latest revision as of 13:52, 1 June 2017

Replaces all occurrencies of a given java.lang.String within another java.lang.String.

Overview


jar ccil-api
recommended name string-replace
class net.ccil.stages.generic.ReplaceStringStage
location /ccil-api/src/main/java/net/ccil/stages/generic/ReplaceStringStage.java
svn svn://svn.code.sf.net/p/ccil/code/trunk/src/api/src/main/java/net/ccil/stages/generic/ReplaceStringStage.java

Parameters

Name Type Description Comment
IN java.lang.String The variable to be processed.
match java.lang.String RegEx to match the ares which will be replaced. replacement match java.lang.String The variable to be processed.
OUT java.lang.String The value of the variable.

Registration

service:string-replace	rdf:type	entity:service ;				
				entity:implementation	"net.ccil.stages.generic.ReplaceStringStage" ;
				entity:classpath	"" ;
				entity:arguments	"" .

Context

TBA

Example

TBA

See Also