本文整理匯總了Java中org.apache.commons.lang3.StringUtils.replaceOnce方法的典型用法代碼示例。如果您正苦於以下問題:Java StringUtils.replaceOnce方法的具體用法?Java StringUtils.replaceOnce怎麽用?Java StringUtils.replaceOnce使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類org.apache.commons.lang3.StringUtils
的用法示例。
在下文中一共展示了StringUtils.replaceOnce方法的5個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getMessage
import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
public static String getMessage(CodeTemp templ, String... params) {
String regContent = templ.getTemp();
int index = 0;
while (regContent.indexOf("{}") >= 0) {
if (ArrayUtils.isEmpty(params) || params.length <= index) {
if (regContent.indexOf("{}") >= 0) {
regContent = regContent.replaceAll("\\{\\}", "");
}
break;
}
regContent = StringUtils.replaceOnce(regContent, "{}", params[index]);
index++;
}
return regContent;
}
示例2: expand
import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
protected Path expand(final Path remote, final String format) throws BackgroundException {
if(remote.getAbsolute().startsWith(format)) {
return new Path(StringUtils.replaceOnce(remote.getAbsolute(), format, workdir.getAbsolute()),
remote.getType());
}
return remote;
}
示例3: replaceWithSysPropUserHome
import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
private static String[] replaceWithSysPropUserHome(final String[] pathArray) {
if (ArrayUtils.isEmpty(pathArray)) {
return pathArray;
}
final String SYS_PROP_USER_HOME = System.getProperty("user.home");
for (int index = 0; index < pathArray.length; index++) {
if (StringUtils.startsWith(pathArray[index], "~")) {
pathArray[index] = StringUtils.replaceOnce(pathArray[index], "~", SYS_PROP_USER_HOME);
}
}
return pathArray;
}
示例4: changeProtocolToHttpsIfNeeded
import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
private String changeProtocolToHttpsIfNeeded(final String repositoryUrl) {
if (!StringUtils.isBlank(repositoryUrl) && repositoryUrl.startsWith(GIT_PROTOCOL)) {
return StringUtils.replaceOnce(repositoryUrl.replace(":", "/"), GIT_PROTOCOL, HTTPS_PROTOCOL);
}
return repositoryUrl;
}
示例5: handle
import org.apache.commons.lang3.StringUtils; //導入方法依賴的package包/類
@Override
protected String handle(String input, String second, String third) {
return StringUtils.replaceOnce(input, second, third);
}