我有一个正则表达式/'(.*?)'/
,它给我这个结果:
string(10) "employeeId"
string(38) "Identity codes are not configured yet."
string(18) "orghead_rep_manger"
string(61) "Please select reporting manager to current organisation head."
我想检查以dot结尾的字符串:
身份代码尚未配置。
请选择报告经理到当前的组织负责人。
答案 0 :(得分:0)
将\
转义符用于句点.
,并与字符串标记$
的末尾组合。
/\.$/
答案 1 :(得分:-1)
尝试使用正则表达式:(?<=")[^"]+?\.(?=")