我的客戶端web服務返回一些帶有GUID的字段,有些則不。 我想寫一個函數,將檢查是否有在該字段中的GUID我需要剝離該GUID,如果GUID不存在,則返回字段,因爲它是。從字段中提取GUID(如果存在)
原型的功能: -
function stripGuid(field)
{
//check if field has GUID then strip off, return new strip field
//else return field as it is
}
樣本數據: -
4922093F-148F-4220-B321-0FBB1843B5DDrec_guid
4922093F-148F-4220-B321-0FBB1843B5DDdate_add
tablenam
sessguid
我如何調用函數: -
stripGuid(sampleData);
預期輸出: -
rec_guid
date_add
tablenam
sessguid
您的預期產出是什麼? – anubhava 2014-10-09 20:35:49
很抱歉忘了添加預期的輸出。現在添加了問題。 – neooo 2014-10-09 20:38:43
但是第二行在輸入中有'date_add',在輸出中有'date_guid' – anubhava 2014-10-09 20:41:10