有没有办法检查字符串资源是否有参数?那么如果我在strings.xml中有以下字符串:
SELECT categories, SUM(values)
FROM table
group by categories
having SUM(values) = 0 WHEN dates between w AND x
AND having SUM(values) > 10000 WHEN dates between y and z
我需要一个方法告诉我R.string.example2有一个参数,而R.string.example1没有任何参数。
答案 0 :(得分:0)
也许它不是很灵活而且太简单但你只需检查它是否有---
title: "Example .Rmd"
output:
word_document:
toc: yes
reference_docx: word-styles-reference-01.docx
theme: hpstr
fontsize: 11pt
---
:
%s
你可以这样使用它:
public boolean hasParameter(String string) {
return string.contains("%s");
}