| 
						
						
							
								
							
						
						
					 | 
					 | 
					@ -496,7 +496,7 @@ interface JsExtensions { | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        correctQueryTTF: QueryTTF? | 
					 | 
					 | 
					 | 
					        correctQueryTTF: QueryTTF? | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					    ): String { | 
					 | 
					 | 
					 | 
					    ): String { | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        if (errorQueryTTF == null || correctQueryTTF == null) return text | 
					 | 
					 | 
					 | 
					        if (errorQueryTTF == null || correctQueryTTF == null) return text | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        val contentArray = text.toStringArray() | 
					 | 
					 | 
					 | 
					        val contentArray = text.toStringArray() //这里不能用toCharArray,因为有些文字占多个字节 | 
				
			
			
				
				
			
		
	
		
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					        contentArray.forEachIndexed { index, s -> | 
					 | 
					 | 
					 | 
					        contentArray.forEachIndexed { index, s -> | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            val oldCode = s.codePointAt(0) | 
					 | 
					 | 
					 | 
					            val oldCode = s.codePointAt(0) | 
				
			
			
		
	
		
		
			
				
					
					 | 
					 | 
					 | 
					            if (errorQueryTTF.inLimit(oldCode)) { | 
					 | 
					 | 
					 | 
					            if (errorQueryTTF.inLimit(oldCode)) { | 
				
			
			
		
	
	
		
		
			
				
					| 
						
							
								
							
						
						
						
					 | 
					 | 
					
  |