- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要从文件路径获取一个值。假设我的路径看起来像任何其他路径:
c:\SomeFolder\SomeOtherfolder\A_Specific_Folder\what_i_want\another_folder\bla.txt
我可以在运行时推断“A_Specific_Folder”的名称,并且我需要获取“what_i_want”。我知道“what_i_want”是一个数字
我目前使用这样的正则表达式:
public String getValueThatIneed(String path) {
String regex = String.format("%s\\\\([0-9]+)\\\\", varContainingNameOfSpecificFolder);
Pattern p = Pattern.compile(regex);
Matcher matcher = compile.matcher(path);
matcher.find(); \\because otherwise i can't use matcher.start()
String myValue = path.substring(matcher.start(1), matcher.end(1));
return myValue;
}
这一切只是为了从一个字符串中获取这个tinyValue。现在假设我必须在方法中使用它,因为我在 10 个地方使用了它。但在其中一个地方,我突然需要对 Stirng 执行一些其他操作,这将再次要求我使用相同的正则表达式执行所有模式、匹配器操作,只是为了获得 matcher.end(1),因为也许这就是全部我需要去那里。
有没有更短的方法来做到这一点?
谢谢。
最佳答案
我将使用文件 API 并检查父名称:
public String find(File file, String folder) {
while (file.getParentFile() != null) {
if(file.getParentFile().getName().equals(folder)) return file.getName();
file = file.getParentFile();
}
return null;
}
或者等效的递归:
public static String find(File file, String folder) {
if(file.getParentFile() == null) return null;
if(file.getParentFile().getName().equals(folder)) return file.getName();
return find(file.getParentFile(), folder);
}
关于java - 我真的需要 4 行代码才能从字符串中间获取值吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7267020/
这个问题在这里已经有了答案: final keyword in method parameters [duplicate] (9 个回答) 关闭 8 年前。 在此示例中,声明 Object fina
我的目标:是通过我的函数更新字段获取选定值并使用函数输出值运行它。 问题:当我从列表中选择值时,它不会触发函数,也不会更新字段。 感谢您的帮助。 HTML 12 14 16 18 20 22 24
我有一本具有这种形式的字典: myDict = {'foo': bar, 'foobar baz': qux} 现在,我想拆分字典键中的空格,使其成为下一个键并获取值(重复)。 myDictRev1
vector a; vector b; int temp_holder; cout > temp_holder) a.push_back(temp_holder); cout > temp_h
Java 的开发过程中免不了与 Date 类型纠缠,准备总结一下项目经常使用的日期相关操作,JDK 版本 1.7,如果能够帮助大家节约那么几分钟起身活动一下,去泡杯咖啡,便是极好的,嘿嘿。当然,我
我正在使用 jquery ui 日期选择器来获取 fromDate 和 toDate 以下是from日期的代码 $("#from_date").datepicker({
我是一名优秀的程序员,十分优秀!