如何让 perl 的 split 使用多个分隔符

2024-11-17 07:19:11
推荐回答(1个)
回答1:

public static long getMaxDivisor(long lFirstInput, long lSecondInput) {
while (lSecondInput % lFirstInput != 0) {
/**
*/
int temp = (int) (lSecondInput % lFirstInput);
lSecondInput = lFirstInput;
lFirstInput = temp;
}
return lFirstInput;
}