如何在数据中输入空格?
示例:
$request->PoliceNo= B123A
必须在database = B 123 A
答案 0 :(得分:0)
您可以使用preg_replace。 在Regex: Add space if letter is adjacent to a number
中说明$test= 'B123A';
$request->PoliceNo= preg_replace('/(?<=[a-z])(?=\d)|(?<=\d)(?=[a-z])/i', ' ', $test);