函数

GLibpattern_match_simple

声明 [src]

gboolean
g_pattern_match_simple (
  const gchar* pattern,
  const gchar* string
)

说明 [src]

将字符串与作为字符串给出的模式进行匹配。

如果要在一个循环中调用此函数,那么使用 g_pattern_spec_new() 一次编译模式并重复调用 g_pattern_spec_match_string() 的效率更高。

参数

pattern

类型: const gchar*

使用 UTF-8 编码的模式。

数据由函数调用者所有。
该值是一个以 NUL 结尾的 UTF-8 字符串。
string

类型: const gchar*

要匹配的用 UTF-8 编码的字符串。

数据由函数调用者所有。
该值是一个以 NUL 结尾的 UTF-8 字符串。

返回值

类型: gboolean

如果 string 匹配 pspec,则返回 TRUE