This document summarizes a technique for automatically segmenting source code identifiers into meaningful words. It presents a search-based approach inspired by how developers compose identifiers using terms and applying word transformations. The approach uses a dictionary of terms, calculates the distance between an identifier and dictionary words using Dynamic Time Warping, and applies word transformation rules. An evaluation on two systems found it outperformed a simple CamelCase splitter, correctly splitting over 90% of identifiers. Future work is planned to expand the evaluation and enhance heuristics for term selection and transformations.