mirror of
https://gitee.com/chinabugotech/hutool.git
synced 2025-07-21 15:09:48 +08:00
添加一个占位符解析器
This commit is contained in:
@@ -0,0 +1,44 @@
|
||||
package cn.hutool.core.text;
|
||||
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
/**
|
||||
* test for {@link PlaceholderParser}
|
||||
*
|
||||
* @author huangchengxing
|
||||
*/
|
||||
public class PlaceholderParserTest {
|
||||
|
||||
@Test
|
||||
public void testParse() {
|
||||
String text = "i {a}{m} a {jvav} programmer";
|
||||
PlaceholderParser parser = new PlaceholderParser(str -> str, "{", "}");
|
||||
Assert.assertEquals(
|
||||
"i am a jvav programmer",
|
||||
parser.apply(text)
|
||||
);
|
||||
|
||||
text = "i [a][m] a [jvav] programmer";
|
||||
parser = new PlaceholderParser(str -> str, "[", "]");
|
||||
Assert.assertEquals(
|
||||
"i am a jvav programmer",
|
||||
parser.apply(text)
|
||||
);
|
||||
|
||||
text = "i \\[a][[m\\]] a [jvav] programmer";
|
||||
parser = new PlaceholderParser(str -> str, "[", "]");
|
||||
Assert.assertEquals(
|
||||
"i [a][m] a jvav programmer",
|
||||
parser.apply(text)
|
||||
);
|
||||
|
||||
text = "i /[a][[m/]] a [jvav] programmer";
|
||||
parser = new PlaceholderParser(str -> str, "[", "]", '/');
|
||||
Assert.assertEquals(
|
||||
"i [a][m] a jvav programmer",
|
||||
parser.apply(text)
|
||||
);
|
||||
}
|
||||
|
||||
}
|
Reference in New Issue
Block a user