我有一个名为$DiscountDescriptionTrimmed
的变量,它可能包含以下格式的数据:
"免费和快速送货俱乐部会员,A63540678,"
或者
" A63540678,"
我想在此变量中找到礼品卡编号(例如:A63540678)并根据此编号执行逻辑,附加“礼品卡”'到$DiscountDescription
的开头。
目前,我的代码仅考虑礼品卡号码是否在变量的前面。如果它处于任何其他位置(例如逗号之后),则不会。
必须有一种RegEx方式更好地完成这个PHP代码,对吧?我有各种礼品卡方案,在我的代码中列出,主要包括以特定字母或数字开头的礼品卡,并且具有一定的长度。
我目前的PHP代码是:
$Description = $item->getName();
$DiscountDescription = $_order->getDiscountDescription();
$DiscountDescriptionTrimmed = strtok($DiscountDescription,', ');
if ($DiscountDescriptionTrimmed != '') {
if (substr($DiscountDescriptionTrimmed,0,1) === "e" && strlen($DiscountDescriptionTrimmed) === 11){
$_order->setDiscountDescription('Gift Cards ' . $DiscountDescription);
}
elseif (substr($DiscountDescriptionTrimmed,0,1) === "E" && strlen($DiscountDescriptionTrimmed) === 9){
$_order->setDiscountDescription('Gift Cards ' . $DiscountDescription);
}
elseif (substr($DiscountDescriptionTrimmed,0,1) === "A" && strlen($DiscountDescriptionTrimmed) === 9){
$_order->setDiscountDescription('Gift Cards ' . $DiscountDescription);
}
elseif (strlen($DiscountDescriptionTrimmed) === 17 && substr_count($DiscountDescriptionTrimmed,'-') === 2){
$_order->setDiscountDescription('Gift Cards ' . $DiscountDescription);
}
elseif (strlen($DiscountDescriptionTrimmed) === 8 && ctype_digit($DiscountDescriptionTrimmed)){
$_order->setDiscountDescription('Gift Cards ' . $DiscountDescription);
}
}
礼品卡情景:
场景1:如果礼品卡以" e"并且长度为11个字符。
场景2:如果礼品卡以" E"并且长度为9个字符。
场景3:如果礼品卡以" A"并且长度为9个字符。
场景4:如果礼品卡长度为17个字符且有两个" - "冲进去。
场景5:如果礼品卡长度为8个字符且仅包含数字。
答案 0 :(得分:1)
任务是
(1)从字符串中过滤出卡号;
(2)将卡号用于不同的场景。这就是我得到的:
$DiscountDescriptionTrimmed = "Free and Fast Shipping Club Member, A63540678, ";
$pattern = '/^(e[a-zA-Z]{10})|(E[a-zA-Z]{8})|(A[a-zA-Z]{8})|([a-zA-Z\-]{16})|([0-9]{8})/';
preg_match($pattern, $DiscountDescriptionTrimmed, $match);
for($i=1; $i<=5; $i++) {
$len = strlen($match[$i]);
if($len < 1) {
continue;
} else {
// Scenario $i as you shown in the question
/* for example */
$_order->setDiscountDescription('Gift Cards ' . $DiscountDescription);
break;
}
}
(e[a-zA-Z]{10})
,e + 10个字母
(E[a-zA-Z]{8})
,E + 8个字母
(A[a-zA-Z]{8})
,A + 8个字母
([a-zA-Z\-]{16})
,16个字母+' - '
([0-9]{8})
,8个数字
如果卡号仅由数字组成,而不是字母(字符不明确),则将[a-zA-Z]
替换为[0-9]
如果是混合物,请使用[0-9a-zA-Z]
答案 1 :(得分:1)
尝试以下代码。希望它会对你有所帮助。
$text = "e7867445537, Free and Fast Shipping Club Member, A63540678, e7678 , Free and Fast Shipping Club Member, E67485536 , ET66U-UIK-66eh6YY,
ET66UuUIKd66eh6YY, 99887765";
function remove_zero($matches)
{
return 'Gift Cards ' .$matches[0];
}
echo preg_replace_callback(
"/(([\d]{8}?)|([A][\d]{8}?)|([e][\d]{10}?)|([E][\d]{8}?)|(([\w]*[-]{1}[\w]*[-]{1}[\w]*)([\S]{17})?))([\D\W]|$)/",
"remove_zero",
$text);
答案 2 :(得分:0)
我不懂PHP,但快速搜索其文档后发现它使用了perl风格的正则表达式语法,并且还具有执行搜索和替换的功能,例如:函数preg_replace。我找到的文档位于 here 你看过文档了吗? 如果你有,那对你有帮助吗?