Help me making this another extension of mine

help me making this another extension of mine in this i need to replace one letter of the user has written there

Any help will be appreciated

Why need an extension for that?

1 Like

@Peter i am making other extension but i need to know how to replace a letter with letter to make the other extension

What have you tried? I am only a very basic extension developer but i always search stackoverflow and use Google to find the things i need.

2 Likes
@SimpleFunction(description = "Replace ")
public String Replace(String data) {
	 String t = data;
   String g = t.replace("1","2");
	return g;

1 = Item That You Want To Replace
2 = Item Replace Width

1 Like

thank you @Srrazmi i will try it

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.