Skip to content

Latest commit

 

History

History
15 lines (11 loc) · 330 Bytes

find.md

File metadata and controls

15 lines (11 loc) · 330 Bytes
layout class title summary
default
Macro
find ';' VALUE ';' SEARCHED
The starting position ofof SEARCHED (not a regex) in VALUE
static String	_find	= "${find;<target>;<searched>}";

public int _find(String args[]) throws Exception {
	verifyCommand(args, _find, null, 3, 3);

	return args[1].indexOf(args[2]);
}